I don't have experience in database development, so I need your suggestions in choosing of a database that can be used in Firemonkey.

I need to store html files (without media now, but they can be with), their total size is around 20 GB (uncompressed text). A main feature must be maximally fast searching of text in the database, and it must be possible to implement human searching (like google). Plus, there can be compression (20 GB is to much to store. If compression makes searching slow it's not required).

What kind of databases are appropriate for my concern? Thanks a lot for your suggestions!

Edited

Requirements:

  1. Price: Free
  2. Location: local or remote
  3. Operating system support: Windows
  4. System requirements: a database with a large footprint (hopefully in exchange of better performances)
  5. Performances: fast text searching
  6. Concurrent users: 20
  7. Full text indexing and searching: human (Google-like) fast text searching is required
  8. Manageability: doesn't matter much

I know an on-line web legal database that can search words through 100 GB of information in milliseconds. I need the same performance, and Google-like searching is required.

link|improve this question

I don't see how you would pick a database for this not-very-database-like task. It seems to me that you need an HTML parser and indexer. – Warren P Jan 28 at 2:46
2  
Warren P, there are 5 000 000 documents, a 20-GB size. How to search in milliseconds and store all this amount of files? – maxfax Jan 28 at 4:59
1  
Which type, SQL or NoSQL? Many high-speed databases for non-structured data are NoSQL, like MongoDB, Jackrabbit or CouchDB – mjn Jan 28 at 7:26
1  
Again, I have terabytes of non-db format data on my hard drive. Should I be looking for a DB to store it. I still haven't seen any reason you need a DB. Full text indexing and searching can perhaps be done more easily WITHOUT any DB. – Warren P Jan 28 at 13:08
2  
@Warren P: depends on what other data you have together the docs, and how should they be accessible and managed. If you have to index files locally maybe it's ok without, but if you have a remote repository needing concurrent access and so on, without a DB the risk is to reivent the wheel, or a database... – user160694 Jan 28 at 15:06
feedback

7 Answers

up vote 7 down vote accepted

Delphi database access layer is separated from FireMonkey, it's the same used by VCL (although FM AFAIK relies only on LiveBindings to access data, but that's not an issue in your case).

Today 20 GB are really not much data. Almost any database will handle them without much effort if properly configured. What engine to choose depends on:

  • Price: how much are you going to spend for it?
  • Location: do you need a local database (same machine) or a remote one (LAN or WAN)?
  • Operating system support: which OS should it run on?
  • System requirements: do you need a database with a small footprint, or you can use one with a larger one (hopefully in exchange of better performances)?
  • Performances: what are the required performances?
  • Concurrent users: how much user will connect to the database concurrently?
  • Full text indexing and searching: not all databases offer it out of the box
  • Manageability: some databases may require more management than others.

There is no "one database fits all" yet.

link|improve this answer
Thanks a lot for your answer! Please see my edited question to response. – maxfax Jan 28 at 4:41
2  
The "free" requirement together the 20GB one lets you with little choices (under Windows, Postgres or maybe FIrebird or even SQLite), unless your application can fulfill GPL requirements and use a database under GPL (i.e. MySQL, or others). The major issue may be the full-text search and indexing capability. HTML files needs a parser to strip out tags. There are database with this capability, or an external engine may be used, but than you have to integrate it with your Delphi application. – user160694 Jan 28 at 15:00
Thanks to everybody, I voted +1 every answer. My choice is Firebird. – maxfax Jan 29 at 2:35
There is a Firebird version with full text search according to its documentation - red-soft.biz/en/document_21 - it uses Apache Lucene, a popular search engine – mjn Jan 29 at 13:02
feedback

I'm no DBA so I can't say directly, and honestly I'm not sure that any one person could give a direct answer to this question as it's one of those it just depends scenarios.

http://en.wikipedia.org/wiki/Comparison_of_relational_database_management_systems

That's a good starting point to compare features and platform compatibility. I think the major thing to consider here is what hardware will be running it and how can you best utilize that to accomplish the task at hand.

If you have a server farm being sure your DB supports distribution and some sort of load balancing (most do to some degree from what I understand).

To speed up searching unless you code up a custom algorithm that searches the compressed version somehow I think you're going to want to keep the data un-compressed. Searching the compressed data actually might be faster. If you're able to use the index for the compressed file to compare against your plain text search parameters then are just looking for those keys that were matched within the index. If any are found in the index check for them within the compressed data. Without tons of custom code I haven't heard of any DB that supports this idea of searching compressed text (though I could easily be wrong on this point).

If the entire data set needs to be decompressed before doing the search it will very likely be much slower (memory is relatively cheap compared to CPU time). It looks like Firemonkey has a limited selection of DBs to use so that will help to narrow your choices down as well.

What I would suggest based on your edited question, is to write (or find) a parser or regular expression to extract all the important elements from the HTML that you would like to be searchable. Then store those in a database along with a reference for where they were found in the HTML. In terms of Google like searching, if you mean in terms of how it can correct misspellings and use synonyms, you probably need some sort of custom code to do dictionary look ups for spelling and thesaurus look ups for synonyms. I believe full text searching in any modern DB will handle the need to query with LIKE or similar statements in the where clause.

Looks like ldsandon's answer covers most of this anyhow. TLDR; if not thanks for reading.

link|improve this answer
4  
Not sure why this was down voted, not that it matters much but if you down vote please leave a reason why this is bad or misleading information. Down voting with a comment is like booing, be more constructive with your criticism. I obviously didn't give an answer but neither did the second poster here because as they say there is no one size fits all solution to this problem (in fairness his/her layout of the questions to consider is much better). – shaunhusain Jan 27 at 23:04
Thanks you shaunhusain! How do you think what is the best database to fit requirements in my edited question? – maxfax Jan 28 at 4:54
'Wall of Text' hits you for 6412 damage - upvoted :) – mjn Jan 28 at 21:00
@mjn haha thanks, I reformatted to try and lighten the load and make it slightly more coherent. – shaunhusain Jan 28 at 21:27
feedback

I would recommend PostgreSQL for this task. It has good performance, and built in full text search capability for Google-like searching. And it's free and open source.

Unfortunately Delphi doesn't come with Postgres data access components out of the box. You can connect by ODBC, or you can purchase components available from, for example, Devart, DA-Soft or microOLAP.

link|improve this answer
Thanks Rob!!! Could you tell me if PostgreSQL is appropriate for all requirements in my edited question? – maxfax Jan 28 at 4:51
@maxfax I'm not sure what you mean by wanting a "large footprint", but Postgres should meet all the other requirements readily. So will several other databases of course, but Postgres is the one I'm most familiar with and can recommend. I run a Postgres-powered website, and recently replaced an external site search engine with Postgres' full text search facility, and I've been extremely happy with it. – Rob McDonell Jan 28 at 11:08
"Unfortunately Delphi doesn't come with Postgres data access components out of the box" - what about this andreanolanusse.com/en/… ??? – maxfax Jan 29 at 7:35
I like PostgreSQL and Firebird, the best choices for me. But what about my previous post? – maxfax Jan 29 at 22:59
@maxfax I'm not sure what you're asking. I mentioned that you could connect to Postgres through ODBC, and the link you posted to Andreano's site talks about one way of doing that. – Rob McDonell Jan 30 at 5:15
feedback

Have you considered NoSQL databases? The Wikipedia article explains their differences to SQL databases and also mentions that they are suited as document store.

http://en.wikipedia.org/wiki/NoSQL

The article lists around twelve implementations in the document store category, many are open source. (Jackrabbit, CouchDB, MongoDB).

This question on Stackoverflow contains some pointers to Delphi clients:

Delphi and NoSQL

I would also consider caching on the application server, to speed up search. And of course a text indexing solution like Apache Lucene.

link|improve this answer
Lucene is a java application, besides the need to install and confuigure the Java run time environment you also have to integrate it with a Delphi application. – user160694 Jan 28 at 15:01
Still no Delphi port of Lucene around? ;) – mjn Jan 28 at 19:48
Don't know, but I've enough with Oracle of a C application that spawns a shell to call a Perl application which calls a Java application that spawns a shell to call a Perl application that call a C application that spawns a shell to call... – user160694 Jan 28 at 23:30
... a Delphi app? – mjn Jan 29 at 12:58
feedback

I would take Microsoft SQL Server Express Edition. I think 2008 R2 is latest stable version but there is also Denali (2011). It match all criterien you have.

You can use ADO to work with.

link|improve this answer
Microsoft SQL Server Express Edition has a limit of 4 GB or 10 GB, depending on the version. – Mihaela Jan 29 at 16:46
feedback

Try the Advantage Database Server.

It's easy to manage and configure. Both dbase-like and SQL data management languages. Fast indexed full text search capabilities. Plus, unparalled support from the developers themselves.

The local server (stand-alone version, as opposed to the network based server) is free.

devzone.advantagedatabase.com

link|improve this answer
feedback

There is a Firebird version with full text search according to its documentation - http://www.red-soft.biz/en/document_21 - it uses Apache Lucene, a popular search engine

link|improve this answer
Thanks mjn!!!!! – maxfax Jan 29 at 22:57
You are welcome! – mjn Jan 30 at 15:44
feedback

Your Answer

 
or
required, but never shown

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