documented iStorage, hosted docs and added readme link
This commit is contained in:
parent
af0e48a684
commit
66df0da5f6
4 changed files with 236 additions and 24 deletions
10
src/base.cpp
10
src/base.cpp
|
@ -33,13 +33,13 @@
|
|||
/**
|
||||
* \brief Creates the database
|
||||
*
|
||||
* \param[in] name - name of the database, it is going to affect folder name that is created to store data
|
||||
* \param[in] mapSize - LMDB map size (MBi), multiplied by 1024^2 and passed to <a class="el" href="http://www.lmdb.tech/doc/group__mdb.html#gaa2506ec8dab3d969b0e609cd82e619e5">mdb_env_set_mapsize</a> during the call of LMDBAL::Base::open()
|
||||
* \param[in] _name - name of the database, it is going to affect folder name that is created to store data
|
||||
* \param[in] _mapSize - LMDB map size (MBi), multiplied by 1024^2 and passed to <a class="el" href="http://www.lmdb.tech/doc/group__mdb.html#gaa2506ec8dab3d969b0e609cd82e619e5">mdb_env_set_mapsize</a> during the call of LMDBAL::Base::open()
|
||||
*/
|
||||
LMDBAL::Base::Base(const QString& p_name, uint16_t mapSize):
|
||||
name(p_name.toStdString()),
|
||||
LMDBAL::Base::Base(const QString& _name, uint16_t _mapSize):
|
||||
name(_name.toStdString()),
|
||||
opened(false),
|
||||
size(mapSize),
|
||||
size(_mapSize),
|
||||
environment(),
|
||||
storages(),
|
||||
transactions(new Transactions())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue