Re: Storing graph data structure with MDB_FIXEDMAP

2013-12-16 Thread Howard Chu
Aris Setyawan wrote: If you want to create a record which has fields referencing the addresses of other fields within the same record, that is the goal for FIXEDMAP but this feature requires the relocation functions, which currently are not implemented. Is in the future, this feature will be

Re: Storing graph data structure with MDB_FIXEDMAP

2013-12-12 Thread Aris Setyawan
If you want to create a record which has fields referencing the addresses of other fields within the same record, that is the goal for FIXEDMAP but this feature requires the relocation functions, which currently are not implemented. Is in the future, this feature will be removed? Do you

Storing graph data structure with MDB_FIXEDMAP

2013-11-29 Thread Aris Setyawan
Hi, I'm new in this list. I plan to store graph data structure (vertex and edge) in LMDB. The edge data value of a record will contain a pointer which is pointing to the address of vertex data value. So, I must make it sure that data value address is not changing during operation. According to