A simple inverted index written in Elixir.
If available in Hex, the package can be installed
by adding invert
to your list of dependencies in mix.exs
:
def deps do
[
{:invert, "~> 0.3.0"}
]
end
Documentation can be generated with ExDoc and published on HexDocs. Once published, the docs can be found at https://hexdocs.pm/invert.
Configure tables to cache
config :invert, :tables,
[
{TestInvert, :name, [:name, :id]}
]