Ponzu v0.8.3 Release Notes

Release Date: 2017-02-06 // about 7 years ago
  • 📦 v0.8.3 introduces support for custom user-definable indexes through a simple API in the system/db package.

    func Index(namespace, key string) ([]byte, error) {} // getterfunc SetIndex(namespace, key string, value interface{}) error {} // setterfunc DeleteIndex(namespace, key string) error {} // delete key in indexfunc DropIndex(namespace string) error {} // remove index and all key/values
    

    ✅ To get the latest version:

    $ go1.8rc3 get -u github.com/ponzu-cms/ponzu/...
    $ cd $PROJ && ponzu upgrade