在共享点门户中实施模糊搜索
我正在为建议和奖励系统开发一个共享点门户,并且需要提醒重复的建议。 建议将采用自由文本格式,因此需要模糊搜索。 我知道“Damerau-Levenshtein 算法”可以进行模糊搜索,但是如何在 Sharepoint 门户中实现呢? Microsoft 搜索服务器可以提供帮助吗? 如果是,怎么办?
I am developing a sharepoint portal for a suggestions and rewards system and need to alert duplicate suggestions. Suggestions will be in free text format, hence need fuzzy search. I understand that “Damerau-Levenshtein algorithm” does fuzzy search, but how do I implement in Sharepoint portal? Can Microsoft Search Server help? If yes, how ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您有点受困于 SharePoint 提供的内置搜索,但我认为 FullTextSqlQuery 类可以做很多您正在寻找的事情。 如果您愿意,它会过滤掉重复项。 我建议你看看这个课程。
可以使用 FullTextSqlQuery.TrimDuplicates = false 或 true 启用/禁用修剪重复项
You're kinda stuck with the built in Search provided by SharePoint, but the FullTextSqlQuery class can do a lot of waht you are looking for I think. It will filter out duplicates if you want to. I suggest you take a look at this class.
Trimming duplicates can be enabled / disabled using FullTextSqlQuery.TrimDuplicates = false or true