I have a database that stores details of Code Chekins from various SCRs. One of the table in this database store Commit Comments for each checkin. I am trying to develop a search feature which with the help of Postgres posix notation searches through this table trying to match a regular expression on this comment field and return all the matched.

I have already got this to work, but the main problem here is the performance of this search. For a fairly big database it almost takes 15-20 mins for a search to complete and as its a web frontend waiting for the result this is totally unacceptable time for a medium sized database. I figured that creating an index on this text field might help but I am unable to create a btree index because data for some of the rows is too big for potgres to create index on it.

Is there any other solution to this? Are there any other indexes that can be created which again should not be language dependent?

link|improve this question

68% accept rate
feedback

3 Answers

Check the full text search functions, regular expressions can't use indexes.

link|improve this answer
What about GIST and GIN indexes? I have seen some examples and read quite a few articles on it. I couldn't understand much of it though. Almost all of the examples I came across used English dictionary to generate indexes. Is there any generic way to apply them? – Salman A. Kagzi Nov 15 '10 at 13:59
feedback

Yeah, Full Text Searching is your answer here. PostgreSQL has a pretty robust and fast FTS capability.

link|improve this answer
I cant use full text search. The regular expression way is what I need from functionality per se. I there any other way of speeding up regular expression searches? – Salman A. Kagzi Nov 16 '10 at 12:23
feedback

Others have mentioned full text searching. If you need regular expressions rather than full text searching, there is no way to index them in a generic way. As long as the expression is anchored at the beginning of the string (using ^ at the start), an index can usually be used, but for generic regular expressions, there is no way to use an index for searching them.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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