Values that can be stored in LMDB
LMDB is a key-value store. What types of keys and values can be stored here? Examples shows either int or char arrays .. Also I would like to know if it is possible to store related data in lmdb like we store all data related to a student in a table in RDBMS It sounds like you're not a C programmer, but in the context of the C language, the data for keys and values in LMDB are both (void *) - that is, generic pointers to anything. That means any data type that can be expressed in the programming language can be used. In other languages, through whatever bindings are provided, your options may