bmatsuo / lmdb-go

Bindings for the LMDB C library
BSD 3-Clause "New" or "Revised" License
157 stars 59 forks source link

lmdb: finalizer for Env #26

Closed bmatsuo closed 8 years ago

bmatsuo commented 8 years ago

Relates to #20

A finalizer for lmdb.Env should be straightforward and low overhead. The finalizer needs to check if Env._env is nil, closing it and setting it to nil otherwise. The finalizer must not panic if the Env was closed correctly.