Lightweight fuzzy search library

前端 未结 8 506
鱼传尺愫
鱼传尺愫 2020-12-14 03:05

Can you suggest some light weight fuzzy text search library?

What I want to do is to allow users to find correct data for search terms with typos.

I could us

相关标签:
8条回答
  • 2020-12-14 03:48

    Try Walnutil - based on Lucene API - integrated to SQL Server and Oracle DBs . You can create any type of index and then use it. For simple search you can use some methods from walnutilsoft, for more complicated search cases you can use Lucene API. See web based example where was used indexes created from Walnutil Tools. Also you can see some code example written on Java and C# which you can use it for creating different type of search. This tools is free. http://www.walnutilsoft.com/

    0 讨论(0)
  • 2020-12-14 03:52

    You didn't specify your development platform, but if its PHP then suggest you look at the ZEND Lucene lubrary :

    http://ifacethoughts.net/2008/02/07/zend-brings-lucene-to-php/ http://framework.zend.com/manual/en/zend.search.lucene.html

    As it LAMP its far lighter than Lucene on Java, and can easily be extended for other filetypes, provided you can find a conversion library or cmd line converter - there are lots of OSS solutions around to do this.

    0 讨论(0)
提交回复
热议问题