
whoosh文档翻译学习
python下有一个包是whoosh。
类似于博客的快速搜索项目,它可以实现快速的检索你想要的内容。目前没有找到whoosh相关太多的翻译,这里我来翻译一下,供大家学习参考
幽默的荆轲君
今天就是生命——是惟一你能确知的生命。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Designing a schema(1)
Designing a schema 设计一个架构 About schemas and fields 关于架构和字段 The schema specifies the fields of documents in an index. 架构指定索引中的文件字段。 Each document can have multiple fields, such as title, content, ur...翻译 2018-11-20 09:55:20 · 166 阅读 · 0 评论 -
Glossary
Glossary(术语) Analysis(分析) The process of breaking the text of a field into individual terms to be indexed. 将文本里面的字段切分成单个被索引的术语的过程。 This consists of tokenizing the text into terms, and then optional...翻译 2018-11-19 20:46:05 · 484 阅读 · 0 评论 -
whoosh quick_start
# coding:utf-8 # 因为之前的项目里面用到了whoosh,但是当时没有太多的耐心去看这个,这里深入的整理一下。 # whoosh是一个类似于博客的快速搜索项目,它可以实现快速的检索你想要的内容。 # 首先需要先安装whoosh. pip2 install whoosh # quick_start from whoosh.index import create_in from whoo...翻译 2018-11-16 10:11:10 · 424 阅读 · 0 评论