cl-sophia

2015-06-08

High-level API for Sophia key-value storage

Upstream URL

github.com/multimethod/cl-sophia

Author

Andrey V. Tikhonov <multimethod@yandex.ru>

License

WTFPL
README

CL-SOPHIA

Common Lisp high-level API for Sophia key-value storage

Installation

libsophia
$ cd install
$ make
$ sudo make install
cl-sophia
(ql:quickload "cl-sophia")

Examples

Set and get
(with-database ("test")
  (setf ($ "x") "a"
        ($ "y") "b")
  (values ($ "x")
          ($ "y")
          ($ "z")))
;; => "a"
;; => "b"
;; => NIL
Delete
(with-database ("test")
  (setf ($ "x") "a")
  (let ((x ($ "x")))
    (setf ($ "x") nil)
    (values x ($ "x"))))
;; => "a"
;; => NIL
Transaction
(with-database ("test" :comparator :u32)
  (with-transaction ()
    (setf ($ 0) "a"
          ($ 1) "b"
          ($ 2) "c"))
  (ignore-errors
    (with-transaction ()
      (setf ($ 1) nil)
      (error "Bam!")))
  (values ($ 0)
          ($ 1)
          ($ 2)))
;; => "a"
;; => "b"
;; => "c"
Nested transactions
(with-database ("test")
  (with-transaction ()
    (setf ($ "x") "foo"
          ($ "y") "bar")
    (with-transaction ()
      (setf ($ "z") "baz")))
  (values ($ "x")
          ($ "y")
          ($ "z")))
;; => "foo"
;; => "bar"
;; => "baz"
Iterators
(with-database ("test" :comparator :u32)
  (dotimes (i 3)
    (setf ($ i) (format nil "~r" i)))
  (let (result)
    (let ((*order* :>=))                ; by default
      (map-object (lambda (key value)
                    (push (cons key value) result))))
    (values result)))
;; => ((2 . "two") (1 . "one") (0 . "zero"))

Dependencies (4)

  • alexandria
  • cffi
  • cl-fad
  • lisp-unit

Dependents (0)

    • GitHub
    • Quicklisp