Skip to content

v2.1.0

Compare
Choose a tag to compare
@andrehjr andrehjr released this 30 Jun 17:57
  • Add integration with ActionSupport::Cache's stores. As rollouts don't change often, adding a cache can save thousands of calls to the storage. It's possible to configure the same way Rails allows cache_stores to be configured.

    configuration.cache_store = :memory_store, { expires_in: 100 }

    Additionally, we also added an option to skip the cache entirely by adding a skip_cache: true on FF methods. Example:

    Account.released_id?(resource_id, key, skip_local_cache: true)

    By default there is no cache configured.