yowcow / goromdb

Yet another single process KVS server implemented over file-based database
The Unlicense
12 stars 5 forks source link

Split storage and handler into 2: namespaced and non-namespaced #74

Closed yowcow closed 6 years ago

yowcow commented 6 years ago

All storages are split into 2, Storage and NSStorage that can be created via New() and NewNS().

Simple handler is split into 2, Handler and NSHandler that can be created via simplehandler.New() and simplehandler.NewNS().

Radix handler is removed, so are relative functions in storages.

yowcow commented 6 years ago

This change includes #72