in reply to complex string matching
And if you are looking for “a disk file,” don’t overlook SQLite. http://www.sqlite.org
It is an extremely fast, public domain, flat-file database system. (The only “gotcha” might be that you probably want to do things within a transaction, because when you don’t, SQLite carefully ensures that everything has been written to disk. Exactly as it should, of course, but it slows down bulk-operations considerably.)
So... where you might code your own logic, have a tied hash and so on, you might be able to use a query ... the result being that it is just as fast as it was for the computer, but considerably faster for you.
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: complex string matching
by Your Mother (Archbishop) on Nov 04, 2010 at 13:49 UTC | |
by locked_user sundialsvc4 (Abbot) on Nov 04, 2010 at 16:06 UTC |