Ruby全文搜索库,快速嵌入式搜索解决方案
Tantiny是一个基于Rust的Tantivy搜索引擎开发的Ruby全文搜索库。它为Ruby项目提供简单易用的嵌入式搜索功能,无需配置复杂的搜索引擎。Tantiny支持多种查询类型和自定义分词器,具有线程安全的API。作为Solr和Elasticsearch的轻量级替代方案,Tantiny特别适合需要快速集成搜索功能的场景。
[!WARNING] The gem is not currently maintained and the development is put on hold. If you're interested in taking over, feel free to reach out to me.
Need a fast full-text search for your Ruby script, but Solr and Elasticsearch are an overkill? 😏
You're in the right place. Tantiny is a minimalistic full-text search library for Ruby based on Tantivy (an awesome alternative to Apache Lucene written in Rust). It's great for cases when your task at hand requires a full-text search, but configuring a full-blown distributed search engine would take more time than the task itself. And even if you already use such an engine in your project (which is highly likely, actually), it still might be easier to just use Tantiny instead because unlike Solr and Elasticsearch it doesn't need anything to work (no separate server or process or whatever), it's purely embeddable. So, when you find yourself in a situation when using your search engine of choice would be tricky/inconvinient or would require additional setup you can always revert back to a quick and dirty solution that is nontheless flexible and fast.
Tantiny is not exactly Ruby bindings to Tantivy, but it tries to be close. The main philosophy is to provide low-level access to Tantivy's inverted index, but with a nice Ruby-esque API, sensible defaults, and additional functionality sprinkled on top.
Take a look at the most basic example:
index = Tantiny::Index.new("/path/to/index") { text :description } index << { id: 1, description: "Hello World!" } index << { id: 2, description: "What's up?" } index << { id: 3, description: "Goodbye World!" } index.reload index.search("world") # 1, 3
Add this line to your application's Gemfile:
gem "tantiny"
And then execute:
$ bundle install
Or install it yourself as:
$ gem install tantiny
You don't have to have Rust installed on your system since Tantiny will try to download the pre-compiled binaries hosted on GitHub releases during the installation. However, if no pre-compiled binaries were found for your system (which is a combination of platform, architecture, and Ruby version) you will need to install Rust first.
[!WARNING] Only Rust versions up to
1.77
are supported. See this issue for more details.
[!IMPORTANT] Please, make sure to specify the minor version when declaring dependency on
tantiny
. The API is a subject to change, and until it reaches1.0.0
a bump in the minor version will most likely signify a breaking change.
You have to specify a path to where the index would be stored and a block that defines the schema:
Tantiny::Index.new "/tmp/index" do id :imdb_id facet :category string :title text :description integer :duration double :rating date :release_date end
Here are the descriptions for every field type:
Type | Description |
---|---|
id | Specifies where documents' ids are stored (defaults to :id ). |
facet | Fields with values like /animals/birds (i.e. hierarchial categories). |
string | Fields with text that are not tokenized. |
text | Fields with text that are tokenized by the specified tokenizer. |
integer | Fields with integer values. |
double | Fields with float values. |
date | Fields with either DateTime type or something that converts to it. |
You can feed the index any kind of object that has methods specified in your schema, but plain hashes also work:
rio_bravo = OpenStruct.new( imdb_id: "tt0053221", type: '/western/US', title: "Rio Bravo", description: "A small-town sheriff enlists a drunk, a kid and an old man to help him fight off a ruthless cattle baron.", duration: 141, rating: 8.0, release_date: Date.parse("March 18, 1959") ) index << rio_bravo hanabi = { imdb_id: "tt0119250", type: "/crime/Japan", title: "Hana-bi", description: "Nishi leaves the police in the face of harrowing personal and professional difficulties. Spiraling into depression, he makes questionable decisions.", duration: 103, rating: 7.7, release_date: Date.parse("December 1, 1998") } index << hanabi brother = { imdb_id: "tt0118767", type: "/crime/Russia", title: "Brother", description: "An ex-soldier with a personal honor code enters the family crime business in St. Petersburg, Russia.", duration: 99, rating: 7.9, release_date: Date.parse("December 12, 1997") } index << brother
In order to update the document just add it again (as long as the id is the same):
rio_bravo.rating = 10.0 index << rio_bravo
You can also delete it if you want:
index.delete(rio_bravo.imdb_id)
If you need to perform multiple writing operations (i.e. more than one) you should always use transaction
:
index.transaction do index << rio_bravo index << hanabi index << brother end
Transactions group changes and commit them to the index in one go. This is dramatically more efficient than performing these changes one by one. In fact, all writing operations (i.e. <<
and delete
) are wrapped in a transaction implicitly when you call them outside of a transaction, so calling <<
10 times outside of a transaction is the same thing as performing 10 separate transactions.
Tantiny is thread-safe meaning that you can safely share a single instance of the index between threads. You can also spawn separate processes that could write to and read from the same index. However, while reading from the index should be parallel, writing to it is not. Whenever you call transaction
or any other operation that modify the index (i.e. <<
and delete
) it will lock the index for the duration of the operation or wait for another process or thread to release the lock. The only exception to this is when there is another process with an index with an exclusive writer running somewhere in which case the methods that modify the index will fail immediately.
Thus, it's best to have a single writer process and many reader processes if you want to avoid blocking calls. The proper way to do this is to set exclusive_writer
to true
when initializing the index:
index = Tantiny::Index.new("/path/to/index", exclusive_writer: true) {}
This way the index writer will only be acquired once which means the memory for it and indexing threads will only be allocated once as well. Otherwise a new index writer is acquired every time you perform a writing operation.
Make sure that your index is up-to-date by reloading it first:
index.reload
And search it (finally!):
index.search("a drunk, a kid, and an old man")
By default it will return ids of 10 best matching documents, but you can customize it:
index.search("a drunk, a kid, and an old man", limit: 100)
You may wonder, how exactly does it conduct the search? Well, the default behavior is to use smart_query
search (see below for details) over all text
fields defined in your schema. So, you can pass the parameters that the smart_query
accepts right here:
index.search("a dlunk, a kib, and an olt mab", fuzzy_distance: 1)
However, you can customize it by composing your own query out of basic building blocks:
popular_movies = index.range_query(:rating, 8.0..10.0) about_sheriffs = index.term_query(:description, "sheriff") crime_movies = index.facet_query(:cetegory, "/crime") long_ass_movies = index.range_query(:duration, 180..9999) something_flashy = index.smart_query(:description, "bourgeoisie") index.search((popular_movies & about_sheriffs) | (crime_movies & !long_ass_movies) | something_flashy)
I know, weird taste! But pretty cool, huh? Take a look at all the available queries below.
Query | Behavior |
---|---|
all_query | Returns all indexed documents. |
empty_query | Returns exactly nothing (used internally). |
term_query | Documents that contain the specified term. |
fuzzy_term_query | Documents that contain the specified term within a Levenshtein distance. |
phrase_query | Documents that contain the specified sequence of terms. |
regex_query | Documents that contain a term that matches the specified regex. |
prefix_query | Documents that contain a term with the specified prefix. |
range_query | Documents that with an integer , double or date field within the specified range. |
facet_query | Documents that belong to the specified category. |
smart_query | A combination of term_query , fuzzy_term_query and prefix_query . |
Take a look at the signatures file to see what parameters do queries accept.
All queries can search on multuple fields (except for facet_query
because it doesn't make sense there).
So, the following query:
index.term_query(%i[title description], "hello")
Is equivalent to:
index.term_query(:title, "hello") | index.term_query(:description, "hello")
All queries support the boost
parameter that allows to bump documents position in the search:
about_cowboys = index.term_query(:description, "cowboy", boost: 2.0) about_samurai = index.term_query(:description, "samurai") # sorry, Musashi... index.search(about_cowboys | about_samurai)
smart_query
behaviorThe smart_query
search will extract terms from your query string using the respective field tokenizers and search the index for documents that contain those terms via the term_query
. If the fuzzy_distance
parameter is specified it will use the fuzzy_term_query
. Also, it allows the last term to be unfinished by using the prefix_query
.
So, the following query:
index.smart_query(%i[en_text ru_text], "dollars рубли eur", fuzzy_distance: 1)
Is equivalent to:
t1_en = index.fuzzy_term_query(:en_text, "dollar") t2_en = index.fuzzy_term_query(:en_text, "рубли") t3_en = index.fuzzy_term_query(:en_text, "eur") t3_prefix_en = index.prefix_query(:en_text, "eur") t1_ru = index.fuzzy_term_query(:ru_text, "dollars") t2_ru = index.fuzzy_term_query(:ru_text, "рубл") t3_ru = index.fuzzy_term_query(:ru_text, "eur") t3_prefix_ru = index.prefix_query(:ru_text, "eur") (t1_en & t2_en & (t3_en | t3_prefix_en)) | (t1_ru & t2_ru & (t3_ru | t3_prefix_ru))
Notice how words "dollars" and "рубли" are stemmed differently depending on the field we are searching. This is assuming we have en_text
and ru_text
fields in our schema that use English and Russian stemmer tokenizers respectively.
regex_query
The regex_query
accepts the regex pattern, but it has to be a Rust regex, not a Ruby Regexp
. So, instead of index.regex_query(:description, /hel[lp]/)
you need to use index.regex_query(:description, "hel[lp]")
. As a side note, the regex_query
is pretty fast because it uses the fst crate internally.
So, we've mentioned tokenizers more than once already. What are they?
Tokenizers is what Tantivy uses to chop your text onto terms to build an inverted index. Then you can search the index by these terms. It's an important concept to understand so that you don't get confused when index.term_query(:description, "Hello")
returns nothing because Hello
isn't a term, but hello
is. You have to extract the terms from the query before searching the index. Currently, only smart_query
does that for you. Also, the only field type that is tokenized is text
, so for string
fields you should use the exact match (i.e. index.term_query(:title, "Hello")
).
By default the simple
tokenizer is used, but you can specify the desired tokenizer globally via index options or locally via field specific options:
en_stemmer = Tantiny::Tokenizer.new(:stemmer) ru_stemmer = Tantiny::Tokenizer.new(:stemmer, language: :ru) Tantiny::Index.new "/tmp/index", tokenizer: en_stemmer do text :description_en text :description_ru, tokenizer: ru_stemmer end
Simple tokenizer chops the text on punctuation and whitespaces, removes long tokens, and lowercases the text.
tokenizer = Tantiny::Tokenizer.new(:simple) tokenizer.terms("Hello World!") # ["hello", "world"]
Stemmer tokenizers is exactly like simple tokenizer, but with additional stemming according to the specified language (defaults to English).
tokenizer = Tantiny::Tokenizer.new(:stemmer, language: :ru) tokenizer.terms("Привет миру сему!") # ["привет", "мир", "сем"]
Take a look at the source to see what languages are supported.
Ngram tokenizer chops your text onto ngrams of specified size.
tokenizer = Tantiny::Tokenizer.new(:ngram, min: 5, max: 10, prefix_only: true) tokenizer.terms("Morrowind") # ["Morro", "Morrow", "Morrowi", "Morrowin", "Morrowind"]
You may have noticed that search
method returns only documents ids. This is by design. The documents themselves are not stored in the index. Tantiny is a minimalistic library, so it tries to keep things simple. If you need to retrieve a full document, use a key-value store like Redis alongside.
After checking out the repo, run bin/setup
to install dependencies. Then, run rake build
to build native extensions, and then rake spec
to run the tests. You can also run bin/console
for an interactive prompt that will allow you to experiment.
We use conventional commits to automatically generate the CHANGELOG, bump the semantic version, and to publish and release the gem. All you need to do is stick to the convention and CI will take care of everything else for you.
Bug reports and pull requests are welcome on GitHub at https://github.com/baygeldin/tantiny.
The gem is available as open source under the terms of the [MIT
字节跳动发布的AI编程神器IDE
Trae是一种自适应的集成开发环境(IDE),通过自动化和多元协作改变开发流程。利用Trae,团队能够更快速、精确地编写和部署代码,从而提高编程效率和项目交付速度。Trae具备上下文感知和代码自动完成功能,是提升开发效率的理想工具。
AI小说写作助手,一站式润色、改写、扩写
蛙蛙写作—国内先进的AI写作平台,涵盖小说、学术、社交媒体等多场景。提供续写、改写、润色等功能,助力创作者高效优化写作流程。界面简洁,功能全面,适合各类写作者提升内容品质和工作效率。
全能AI智能助手,随时解答生活与工作的多样问题
问小白,由元石科技研发的AI智能助手,快速准确地解答各种生活和工作问题,包括但不限于搜索、规划和社交互动,帮助用户在日常生活中提高效率,轻松管理个人事务。
实时语音翻译/同声传译工具
Transly是一个多场景的AI大语言模型驱动的同声传译、专业翻译助手,它拥有超精准的音频识别翻译能力,几乎零延迟的使用体验和支持多国语言可以让你带它走遍全球,无论你是留学生、商务人士、韩剧美剧爱好者,还是出国游玩、多国会议、跨国追星等等,都可以满足你所有需要同传的场景需求,线上线下通用,扫除语言障碍,让全世界的语言交流不再有国界。
一键生成PPT和Word,让学习生活更轻松
讯飞智文是一个利用 AI 技术的项目,能够帮助用户生成 PPT 以及各类文档。无论是商业领域的市场分析报告、年度目标制定,还是学生群体的职业生涯规划、实习避坑指南,亦或是活动策划、旅游攻略等内容,它都能提供支持,帮助用户精准表达,轻松呈现各种信息。
深度推理能力全新升级,全面对标OpenAI o1
科大讯飞的星火大模型,支持语言理解、知识问答和文本创作等多功能,适用于多种文件和业务场景,提升办公和日常生活的效率。讯飞星火是一个提供丰富智能服务的平台,涵盖科技资讯、图像创作、写作辅助、编程解答、科研文献解读等功能,能为不同需求的用户提供便捷高效的帮助,助力用户轻松获取信息、解决问题,满足多样化使用场景。
一种基于大语言模型的高效单流解耦语音令牌文本到语音合成模型
Spark-TTS 是一个基于 PyTorch 的开源文本到语音合成项目,由多个知名机构联合参与。该项目提供了高效的 LLM(大语言模型)驱动的语音合成方案,支持语音克隆和语音创建功能,可通过命令行界面(CLI)和 Web UI 两种方式使用。用户可以根据需求调整语音的性别、音高、速度等参数,生成高质量的语音。该项 目适用于多种场景,如有声读物制作、智能语音助手开发等。
AI助力,做PPT更简单!
咔片是一款轻量化在线演示设计工具,借助 AI 技术,实现从内容生成到智能设计的一站式 PPT 制作服务。支持多种文档格式导入生成 PPT,提供海量模板、智能美化、素材替换等功能,适用于销售、教师、学生等各类人群,能高效制作出高品质 PPT,满足不同场景演示需求。
选题、配图、成文,一站式创作,让内容运营更高效
讯飞绘文,一个AI集成平台,支持写作、选题、配图、排版和发布。高效生成适用于各类媒体的定制内容,加速品牌传播,提升内容营销效果。
专业的AI公文写作平台,公文写作神器
AI 材料星,专业的 AI 公文写作辅助平台,为体制内工作人员提供高效的公文写作解决方案。拥有海量公文文库、9 大核心 AI 功能,支持 30 + 文稿类型生成,助力快速完成领导讲话、工作总结、述职报告等材料,提升办公效率,是体制打工人的得力写作神器。
最新AI工具、AI资讯
独家AI资源、AI项目落地
微信扫一扫关注公众号