-
Notifications
You must be signed in to change notification settings - Fork 1
PgStorageBackend
Florian Gutmann edited this page Jan 7, 2014
·
10 revisions
Backend that stores data in a postgres database.
- StorageBackend interface is too fine-grained for SQL based backends. It would be useful to have a better high level knowledge of what should be changed/stored. This would allow optimizations like batch-insert in SQL backends.
- No documentation of StorageBackend interface. Sometimes you have to guess what should happen.
The tests assume a user "dstore-test" with the password "test" and a database named "dstore-test" where the user has full privileges (including schema modifications).
createuser dstore-test --pwprompt # enter "test" as password
createdb -O dstore-test -E UTF-8 dstore-test