Clarify btreedb docs

This commit is contained in:
DBotThePony 2024-02-15 13:58:50 +07:00
parent c43992aa04
commit f99abb9fa9
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -29,8 +29,8 @@ private fun readHeader(reader: RandomAccessFile, required: Char) {
/**
* General purpose binary object storage, employing copy-on-write updates.
*
* This database is designed to read/write *small* files, since any read/write operation
* must be able to fully store the file in question in memory.
* This database is designed to read/write small blobs, since any read/write operation
* must be able to fully store the blob in question in memory.
*
* Smallest unit of work is defined as block. Default block size is 4096 bytes (which includes block header and pointer to next block).
* See [create] for more details.