vote up 1 vote down star

In one of our commercial applications (Win32, written in Delphi) we'd like to implement full text search. The application is storing user data in some kind of binary format that is not directly recognizable as a text.

Ideally, I'd like to find either an in-process solution (DLL would be OK) or a local server that I could access via TCP (preferably). The API should allow me to submit a textual information to the server (along with the metadata representing the binary blob it came from) and, of course, it should allow me to do a full-text search with at least minimal support for logical operators and substring searching. Unicode support is required.

I found extensive list of search engines on Stack Overflow (What are some Search Servers out there?) but I don't really understand which of those engines could satisfy my needs. I thought of asking The Collective for opinion before I spend a day or two testing each of them.

Any suggestions?

flag

7 Answers

vote up 1 vote down check

There are a number of options on the market. Either fully fledge commercial products or open source variants. Your choice of a search provider is very dependent on the customers you are targetting.

Microsoft has a free Express version of their Search Server. As far as I know the Express edition is limited to running the Application Tier on one server.

There is also the Apache Lucene project which is open source. It has a nice API that's easy to use and a large community of users. The original project is based on Java, but there are also other implementations such as NLucene for .NET that I have used personally.

link|flag
vote up 0 vote down

I'd recommend having a look at SQLite -- full-text search is included in the latest version.

link|flag
vote up 0 vote down

I suppose the answer depends on your db. For example SQL Server has full text search and also English Language Queries if ever needed.

link|flag
vote up 0 vote down

Take a look at using PostgreSQL and tsearch.

link|flag
vote up 0 vote down

Try using postgresql with tsearch

link|flag
vote up 0 vote down

Sphinx is probably the most efficient and scalable option while SQLite - FTS3 is the most straightforward option.

link|flag
vote up 0 vote down

While not in-process, Solr is very fast (based on Lucene) and easily accessible from any platform (HTTP)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.