chickadee » sqdb

Outdated egg!

This is an egg for CHICKEN 4, the unsupported old release. You're almost certainly looking for the CHICKEN 5 version of this egg, if it exists.

If it does not exist, there may be equivalent functionality provided by another egg; have a look at the egg index. Otherwise, please consider porting this egg to the current version of CHICKEN.

sqdb

Simple key-value store on top of SQLite. Experimental, API subject to change.

Overview

sqdb is a simple key-value store implemented on top of SQLite using the sql-de-lite egg. It provides the usual fetch, store and modify operations. It also supports ACID semantics, by virtue of SQLite.

Keys are strings or symbols. Values may be strings, exact integers, inexact integers, and blobs.

API

Open and close

open-database filenameprocedure

Opens database with path filename and returns an sqdb database object. The database will be created if it does not exist.

close-database dbprocedure

Closes sqdb database db.

call-with-database filename procprocedure

Opens sqdb database filename and calls (proc db). The database will be closed when proc returns or raises an exception.

sqdb-handle dbprocedure

Return the underlying sql-de-lite database handle for db.

Read, modify, and write

fetch db keyprocedure

Fetch value of key from database db. key may be a string or symbol.

Returns a string, exact or inexact integer, or blob depending on the type of the stored value. If the key did not exist, returns #f.

store db key valprocedure

Stores key in database db with value val. If key already exists, its value is overwritten; otherwise, a new key is created.

key may be a string or symbol. val may be a string, exact or inexact integer, or blob; it will be stored and fetched as that type.

The return value is unspecified.

add db key valprocedure
add* db key valprocedure

add is like store, but only makes a change if the key did not exist. It returns #f if the key did exist, and #t if it did not.

add* is like add, but raises an exception if the key already exists.

exists? db keyprocedure

Test if key exists in db and returns a boolean value.

incr db key #!optional nprocedure

Atomically increment the value associated with key by n. n may be an integer or a floating point value, and defaults to 1.

If the value is a string, it is converted to a number if possible, and the new value will be a number. If the conversion fails, it is considered to be zero, so the resulting value will be the number n.

Returns #t if the key existed and #f if it did not.

decr db key #!optional nprocedure

Equivalent to (incr db key (- n)).

update db key procprocedure

Updates the value of key by fetching the current value of key, calling (proc val) to get an updated value, and storing that into the database. val will be #f if the key did not exist.

This operation is implemented using an IMMEDIATE transaction, and is atomic as long as you always use update elsewhere (or an IMMEDIATE or EXCLUSIVE transaction) when doing a read-modify-write on this key.

Note that the incr operation could be implemented in a much less efficient way using update:

(update db key (lambda (x) (add1 (or x 0))))
;; Less efficient than:
(add db k 0)
(incr db k)
delete db keyprocedure

Deletes key from db. Returns #t if the key existed (and was deleted), or #f if it did not exist.

Transactions

with-transaction db thunk #!optional (type deferred)procedure

Executes thunk inside an atomic transaction. If thunk raises an exception or returns #f, the transaction is rolled back. Otherwise it is committed when thunk exits.

Warning: transactions may not be nested. An error will occur if you try.

type may be

deferred
Everyone can write until our first read or write; everyone can read until our first write.
immediate
No one else can write, but everyone can read until our first write.
exclusive
No one else can read or write.
begin-transaction db thunk #!optional (type deferred)procedure

Begin an atomic transaction. See with-transaction for the meaning of type.

commit dbprocedure

Commit the current transaction to disk oxide.

rollback dbprocedure

Rollback the current transaction.

Miscellaneous

set-busy-timeout! db msprocedure

Set a timeout of ms milliseconds for operations that occur when the database is locked. If ms is #f or 0, the operation times out immediately.

You must set the timeout separately for each database connection and it can be changed at any time after the database is open. The default is #f.

Implementation notes

The key-value store is implemented as a table called sqdb_ht_1 inside an SQLite database. The table is created if necessary when the database file is opened. The store can therefore be used with an existing SQLite database without interfering with other tables.

The db object is currently a raw sqlite-database object from sql-de-lite and consequently you can execute statements, etc. by using that egg. The representation of the object may change so you should always use sqdb-handle to obtain the SQLite database handle.

Bugs and limitations

About this egg

Author

Jim Ursetto

Version history

0.0.2
Permit storage and retrieval of numbers and blobs in addition to strings
0.0.1
Initial release

License

Copyright (c) 2011, Ursetto Consulting, Inc. MIT license.

Contents »