语义搜索在哪里 斯科特? (中文 (Chinese Simplified))

语义搜索在哪里 斯科特?

Wednesday, 03 December 2025

//

Less than a minute

OK这里的快速文章。你在很多文章中读过关于语义搜索的所有文章。 但你可能注意到了,这个网站实际上不是用它 艺 年在哪里呢?

很简单,我部署这个网站的方式 意味着我需要休息时间 改变我的 docker- competable. yml 转换器 专门添加

  mostlylucid:
    image: scottgal/mostlylucid:latest
    restart: always
    labels:
      - "com.centurylinklabs.watchtower.enable=true"
    env_file:
      - .env
    environment:
...
      - SemanticSearch__Enabled=${SEMANTICSEARCH_ENABLED}
      - SemanticSearch__QdrantUrl=http://qdrant:6333
      - SemanticSearch__CollectionName=${SEMANTICSEARCH_COLLECTIONNAME}
      - SemanticSearch__EmbeddingModelPath=${SEMANTICSEARCH_EMBEDDINGMODELPATH}
      - SemanticSearch__VocabPath=${SEMANTICSEARCH_VOCABPATH}
      - SemanticSearch__VectorSize=${SEMANTICSEARCH_VECTORSIZE}
      - SemanticSearch__RelatedPostsCount=${SEMANTICSEARCH_RELATEDPOSTSCOUNT}
      - SemanticSearch__MinimumSimilarityScore=${SEMANTICSEARCH_MINIMUMSIMILARITYSCORE}
      - SemanticSearch__SearchResultsCount=${SEMANTICSEARCH_SEARCHRESULTSCOUNT}

 qdrant:
    image: qdrant/qdrant:latest
    container_name: qdrant
    restart: always
    volumes:
      - qdrant-data:/qdrant/storage
    networks:
      - app_network
    environment:
      - QDRANT__SERVICE__GRPC_PORT=6334

这正是我所需要的。它正在我本地的测试实例(https://local. mostlylucid.net)上运行,我能够快速地解决故障,更容易地调整(实际上它就在我旁边的一台笔记本电脑上;旧的笔记本电脑可以制造伟大的家用实验室机器, Cloudflare 隧道 来演一出戏吧

这会到达某个点; 很可能超过圣诞节, 当我的交通下降 / 我睡不着一晚。在那之前, 网站是一个优雅的退化的例子,

Finding related posts...
logo

© 2026 Scott Galloway — Unlicense — All content and source code on this site is free to use, copy, modify, and sell.