rspamd_cdb
Rspamd CDB module is used to read and write key/value pairs to the CDB file
Functions:
Function | Description |
---|---|
rspamd_cdb.open(filename, [ev_base]) |
Opens an existing CDB for reading. |
rspamd_cdb.build(filename, [mode]) |
Creates a new cdb in a file (existing one will be overwritten!). |
Methods:
Method | Description |
---|---|
rspamd_cdb:find(key) |
Finds a specific key in cdb and returns a string or nil if a key has not been found. |
rspamd_cdb:get_name() |
Returns filename for the specific cdb. |
rspamd_cdb_builder:add(key, value) |
Adds new value to cdb in the builder mode. |
rspamd_cdb_builder:finalize() |
Finalizes the CDB and writes it to disk. |
The module rspamd_cdb
defines the following functions.
rspamd_cdb.open(filename, [ev_base])
Opens an existing CDB for reading. If ev_base
is specified, then cdb file is added
for monitoring, that will get updates on disk file changes.
Parameters:
filename {string}
: path to fileevent {ev_base}
: loop objectReturns:
{rspamd_cdb}
: cdb objectBack to module description.
rspamd_cdb.build(filename, [mode])
Creates a new cdb in a file (existing one will be overwritten!). The object returned can be used merely for adding data. Upon finalizing, the data is written to disk and cdb can no longer be changed.
Parameters:
filename {string}
: path to filemode {int}
: numeric mode to create a fileReturns:
{rspamd_cdb_builder}
: cdb builder object (or nil + error message)Back to module description.
The module rspamd_cdb
defines the following methods.
rspamd_cdb:find(key)
Finds a specific key in cdb and returns a string or nil if a key has not been found
Parameters:
key {string}
: key to findReturns:
{string/nil}
: value for the specific keyBack to module description.
rspamd_cdb:get_name()
Returns filename for the specific cdb
Parameters:
No parameters
Returns:
{string}
: filename for cdbBack to module description.
rspamd_cdb_builder:add(key, value)
Adds new value to cdb in the builder mode
Parameters:
key {string}
: key to addvalue {string}
: value to associate with the keyReturns:
{rspamd_cdb_builder}
: the same object to allow chaining callsBack to module description.
rspamd_cdb_builder:finalize()
Finalizes the CDB and writes it to disk. This method also closes FD associated with CDB builder. No further additions are allowed after this point
Parameters:
No parameters
Returns:
No return
Back to module description.
Back to top.