New features
- Supports multiple stores (some local, some remote) #122
- Fixed a number of bugs, like deleting an entire store was broken (
store.clear('*')
) - Updated algorithm to account to fix situations where remote store queries happen before coalescing, resulting in wasted trips to external databases #121
Breaking changes
- Need to update
ha-store-redis
to 3.x - New interface to specify settings, making configuration more explicit
Instead of:
undefined => enabled by default
null => disabled
{ ... } => enabled with config
We have:
{
enabled: <boolean>
...
}