kyotocabinet-0.1.3: Mid level bindings to Kyoto Cabinet

Safe HaskellNone
LanguageHaskell98

Database.KyotoCabinet.DB.CacheTree

Description

Cache tree database

On-memory database using a B+ tree, useful for an ordered cache.

  • Persistence: volatile
  • Algorithm: B+ tree
  • Complexity: O(log n)
  • Sequence: custom order
  • Lock unit: page (mutex)

Synopsis

Documentation

data Compressor Source

Compression algorithm used. DEFLATE is the default one.

Constructors

Zlib

The raw zlib compressor

DEFLATE

zlib deflate compressor

Gz

zlib gzip compressor

LZO

LZO compressor

LZMA

LZMA compressor

Arc

Arcfour cipher

data Options Source

General tuning options

Constructors

Compress

Enable compression of the keys and the values

data Comparator Source

Comparator used in the tree. Lexical by default.

Constructors

Lexical 
Decimal