Resource Cache

Hex.pm Build Status Coverage Status Hex.pm

Fast caching with clear syntax.

Quick Setup

def deps do
  [
    {:resource_cache, "~> 0.1"}
  ]
end

Define a cache by setting a resource (in this case Ecto schema) and source. (The Ecto repo to query.)

defmodule MyApp.Categories do
  use ResourceCache
  resource MyApp.Category
  source :ecto, repo: MyApp.Repo
end

Now the cache can be used for fast listing:

iex> MyApp.Categories.list()
[%MyApp.Category{}, ...]

Indices can be added to do quick lookups by value:

defmodule MyApp.Categories do
  use ResourceCache
  resource MyApp.Category
  source :ecto, repo: MyApp.Repo

  index :slug, primary: true
end

Now get_by_slug/1 can be used. In addition to the standard get_by_slug, get/1 is also available since it was defined as primary index.

iex> MyApp.Categories.get("electronics")
%MyApp.Category{}
iex> MyApp.Categories.get_by_slug("electronics")
%MyApp.Category{}
iex> MyApp.Categories.get("fake")
nil
iex> MyApp.Categories.get_by_slug("fake")
nil

There is no limit to the amount of indices that can be added.

It is possible to pass an optional type for each index, to generate cleaner specs for the function arguments.

index :slug, primary: true, type: String.t

Roadmap

To 0.1.0

  • Cleanup code for publishing
  • Mechanism for caches that depend on caches configured with type: :direct
  • HTTP bridge improved polling logic

Future

  • TCP bridge

License

MIT License

Copyright (c) 2020 Ian Luites

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.