Ask HN: which NoSQL database engine is better to use with Common Lisp?
I want to find NoSQL database engine which has integration with Common Lisp. I want to use it on one server environment. The main point: easy of use. I like Redis approach with abstract data types (lists, sets, hashes) which is familiar to every developer.
2 comments
[ 3.0 ms ] story [ 17.7 ms ] threadThere's cl-mongo (MongoDB), cl-tc (Tokyo Cabinet), de.setf.cassandra (Cassandra), chillax and clouchdb (CouchDB), etc. etc. [Some are more complete and performant than others, but you can find a usable CL binding for almost any NoSQL db. Use a search engine and/or ask on IRC or comp.lang.lisp for pointers.]
NoSQL is a broad category containing many data persistence strategies and access characteristics; there is certainly no single tech that will fit every application best. I'm not any kind of cl pro, but the first step is always to work out what performance and persistence characteristics you need.