0

有没有办法用 C# 在 Redis 上进行全文搜索?

4

2 回答 2

0

是的,请参阅http://playnice.ly/blog/2010/05/05/a-fast-fuzzy-full-text-index-using-redis/

代码在 Python 中大约 100 LOC,并且可以转换为 C#。

代码使用metaphonePython库;您可以在线找到 C# 实现,例如:http ://code.google.com/p/doublemetaphone/

于 2012-05-31T19:21:34.513 回答
0

RediSearch在 Redis 之上实现了一个搜索引擎。这还支持更高级的功能,例如精确的短语匹配和文本查询的数字过滤,这是传统 Redis 搜索方法无法实现或高效的。

RediSearch 支持大多数领先的编程语言,包括 C# 参见:https ://libraries.io/nuget/NRediSearch

于 2019-09-12T15:28:03.933 回答