about summary refs log tree commit homepage
path: root/test/test_tdb.rb
DateCommit message (Collapse)
2014-02-09add siphash24
It's the preferred hash function nowadays by Ruby itself, so it probably makes sense to add it
2011-11-19raise ArgumentError if null bytes exist in file path
We don't want path names silently truncated when passed to the C API.
2011-08-22add murmur3f (x86_64 128 bit truncated to 32-bits)
This is faster for larger keys on x86_64
2011-08-18add murmur3a hash
It should be slightly faster than murmur2
2011-08-18add fork test
Just in case...
2011-01-17fetch and delete may be passed destination buffer
This allows apps to reduce GC thrashing by reusing a string buffer.
2011-01-17test_tdb: fix and expand the repack test
We can't repack an in-memory DB, only files
2010-12-04add support for "clear" and "repack" methods
TDB#clear maps to tdb_wipe_all and TDB#repack maps to TDB#repack.
2010-12-02RDoc updates
We still need a lot of work in this area, but this is better than nothing.
2010-12-01initial