Skip to content
unya edited this page Sep 13, 2010 · 3 revisions

Intro

KyotoCabinet is a newer, better version of TokyoCabinet, a simple NoSQL database engine from japan.
KyotoCabinet and TokyoCabinet are a set of database + network server + reverse index (for full-text search) libraries, implemented in C and built for speed. They represent non-relational wing of databases, though TokyoCabinet does have table-based storage with queries on tables (in a way, that mirrors basically what 90% of people use MySQL for ;-) )

Recently the project got slowed down (or rather, on hiatus) however I am moving it to use KyotoCabinet as base library. There is also commercial support available – please contact me for details (I am a Scotland-based consultant – however I can support most places through remote work)

Old

cl-tc is a set of SWIG-based CFFI bindings for TokyoCabinet library and in future, TokyoTyrant and TokyoDystopia. Currently available bindings are 1-to-1 mapping of TokyoCabinet’s C API, available in package tokyocabinet-sys. They will be used to make a nice, CLOS-y API which will reside in package tokyocabinet, however, it’s still not written :)

License

Short version

This software is covered by MIT License. That means you can use it in commercial code, basically do whatever you want with it, except change attribution of copyright (it’s not public domain, but close). No warranty given.

Long, legal version

Copyright © 2009 Paweł Lasek <pawel.lasek@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the “Software”), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

Clone this wiki locally