You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added: Package encoding - An abstraction and wrapper for the core functionality of packages like encoding/json and encoding/gob (issue #47)
Added: Package sql - It contains shared code for SQL implementations. mysql and postgres already use it and if you want to create your own SQL implementation you can use it as well. (Useful for issue #57.)
Added gokv.Store implementations:
Package s3 - A gokv.Store implementation for Amazon S3 (issue #37)
Package leveldb - A gokv.Store implementation for LevelDB (issue #48)
Package file - A gokv.Store implementation for storing key-value pairs as files (issue #52)
Package zookeeper - A gokv.Store implementation for Apache ZooKeeper (issue #66)
Package postgresql - A gokv.Store implementation for PostgreSQL (issue #57)
Package cockroachdb - A gokv.Store implementation for CockroachDB (issue #62)
Package ignite - A gokv.Store implementation for Apache Ignite (issue #64)
Package freecache - A gokv.Store implementation for FreeCache (issue #44)
Package bigcache - A gokv.Store implementation for BigCache (issue #45)
Breaking changes
The MarshalFormat enums were removed from all packages that contained gokv.Store implementations. Instead the shared package encoding was introduced (required for issue #47)