DB->set_h_hash
|
|
#include <db.h>
int
DB->set_h_hash(DB *db,
u_int32_t (*h_hash_fcn)(DB *, const void *bytes, u_int32_t length));
Description
Set a user-defined hash method; if no hash method is specified, a default
hash method is used. Because no hash method performs equally well on all
possible data, the user may find that the built-in hash method performs
poorly with a particular data set. User-specified hash functions must
take a pointer to a byte string and a length as arguments, and return a
value of type
u_int32_t.
The hash function must handle any key values used by the application
(possibly including zero-length keys).
If a hash method is specified, DB->open will attempt to determine
whether the hash method specified is the same as the one with which the
database was created, and will fail if it detects that it is not.
The DB->set_h_hash method configures operations performed using the specified
DB handle, not all operations performed on the underlying
database.
The DB->set_h_hash interface may not be called after the DB->open
interface is called.
If the database already exists when
DB->open is called, the information specified to DB->set_h_hash must
be the same as that historically used to create the database or
corruption can occur.
The DB->set_h_hash method returns a non-zero error value on failure and 0 on success.
Errors
The DB->set_h_hash method may fail and return a non-zero error for the following conditions:
- EINVAL
- An invalid flag value or parameter was specified.
Called after DB->open was called.
The DB->set_h_hash method may fail and return a non-zero error for errors specified for other Berkeley DB and C library or system functions.
If a catastrophic error has occurred, the DB->set_h_hash method may fail and
return DB_RUNRECOVERY,
in which case all subsequent Berkeley DB calls will fail in the same way.
Class
DB
See Also
Databases and Related Methods
Copyright Sleepycat Software
|