I wrote: > I look forward to receiving feedback on this. Peter Eisentraut wrote: > Please send a patch in diff -c format. And don't put a single patch > file in a tar file.
Thanks for the pointer. I'm quite new to this. I've done some more revisions to the patch. This has mostly just involved tuning the skip table size based on the size of the search. This has basically involved lots of benchmarks with different strings and calculating the best size of table to use. The reason for this is to maintain fast searches for smaller strings. The overhead of initialising a 256 element array would probably out weigh the cost of the search if this were not done. The size of the skip table increases with longer strings, or rather the size that is utilised. Performance: For smaller searches performance of the patch and existing version are very similar. The patched version starts to out perform the existing version when the needle and haystack become larger. The patch wins hands down with searches that leads the existing function in to dead ends, for example: SELECT STRPOS('A AA AAA AAAA AAAAA AAAAAA AAAAAAA','AAAAAAA'); When searching for very small strings, say just a single character in a sentence the existing function marginally beats the patched version. Outside of Postgres I've done benchmarks where I've searched for every combination of the search string in the search string. Like: test | t | test | te | test | tes | test | test | test | e | test | es | test | est | test | s | test | st | test | t | I felt this was fair for both versions. The patched version beat the unpatched version. The test I carried out was a string of 934 characters. I can upload more benchmarks if required. I'm quite happy with the patch now so I'm going to submit it (in diff -c format this time :) David.
boyer-moore_strpos_v1.1.patch
Description: Binary data
-- Sent via pgsql-patches mailing list (pgsql-patches@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-patches