estraier / tkrzw

a set of implementations of DBM
Apache License 2.0
169 stars 21 forks source link

Is Tkrzw architecture independent? #3

Closed mahrud closed 3 years ago

mahrud commented 3 years ago

Are the database files produced by Tkrzw usable by Tkrzw running on another platform? In particular, I'm wondering if the database files depend on word size (32-bit/64-bit) or default endian-ness, as for instance GDBM databases do.

estraier commented 3 years ago

Yes. The DB format is independent of word size and endian.

On Sun, Dec 6, 2020, 15:21 Mahrud Sayrafi notifications@github.com wrote:

Are the database files produced by Tkrzw usable by Tkrzw running on another platform? In particular, I'm wondering if the database files depend on word size (32-bit/64-bit) or default endian-ness, as for instance GDBM databases do.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/estraier/tkrzw/issues/3, or unsubscribe https://github.com/notifications/unsubscribe-auth/AQGJVRBMDQIL6B66IRPEUG3STMPGFANCNFSM4UPC7RCA .

mahrud commented 3 years ago

Thank you!