in reply to Big cache
I'd like to request some general advice on *local* databases ... So... tips? Conventional wisdom? Pitfalls? What to watch out for? That kind of stuff.
For fun, let's start with my top ten list of general software development practices (adapted from On Coding Standards and Code Reviews):
So I'd start by defining your "local database interface" based on your requirements. You could then try an implementation of it using, for example, the excellent suggestions above from the Discipulus. If your interface is well designed, you could further experiment with different implementations of it, based on your requirements. If performance was crucial, for example, you could benchmark alternative implementations of your local database interface using different technologies - comparing the performance of built-in Perl hashes with a SQLite memory-based database and Judy Arrays, for example.
If performance is critical for your application, you might be interested in:
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Big cache
by cavac (Prior) on Aug 02, 2022 at 12:47 UTC | |
by afoken (Chancellor) on Aug 02, 2022 at 14:50 UTC |