Extremely simple Ecto Postgres adapter for Nebulex Cache library. Designed to be used as the last level adapter inside multilevel cache.
This adapter implements:
Cache eviction strategy is LRW or LRU based on the last touched timestamp.
In mix.exs
:
defp deps do
[
{:nebulex_adapters_ecto, "~> 1.0"}
]
end
In your runtime.exs
:
config :my_app, MyApp.Cache,
# Available strategies are LRW and LRU
strategy: :lrw,
# Repository to be used to access table with cache
repo: MyApp.Repo,
# The table as a string (or Schema) which will hold cache data
table: "cache_table",
# Maximum amount of data present in the table (in rows)
max_amount: 1000,
# Timeout of garbage collection in milliseconds
gc_timeout: :timer.hours(2),
# The function to generate timestamps in milliseconds
timestamp_mfa: {:erlang, :system_time, [:millisecond]}
The most simple migration for cache table would look like this:
defmodule Nebulex.Adapters.EctoTest.Repo.Migrations.CreateCacheTable do
use Ecto.Migration
def change do
create table "cache_table" do
add :key, :binary, primary_key: true
add :value, :binary
add :touched_at, :bigint
add :ttl, :integer
end
create unique_index("cache_table", :key)
end
end
However, feel free to create your own indexes. For example, to speed up
garbage collection, I'd suggest using touched_at + ttl
btree index.