简体   繁体   中英

Redis full search text with C#

有什么方法可以使用C#在Redis上进行全文搜索吗?

Yes, see http://playnice.ly/blog/2010/05/05/a-fast-fuzzy-full-text-index-using-redis/ .

The code is about 100 LOC in Python, and can be transformed to C#.

The code uses metaphone Python library; you can find C# implementations online, such as this one: http://code.google.com/p/doublemetaphone/

RediSearch implements a search engine on top of Redis. This also enables more advanced features, like exact phrase matching and numeric filtering for text queries, that are not possible or efficient with traditional Redis search approaches.

RediSearch supports the most of the leading programming languages including C# see: https://libraries.io/nuget/NRediSearch

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM