Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ericentin/ets_map
An Elixir package that provides a Map-like interface (Map/Access/Enumerable/Collectable) backed by an ETS table
https://github.com/ericentin/ets_map
Last synced: 3 months ago
JSON representation
An Elixir package that provides a Map-like interface (Map/Access/Enumerable/Collectable) backed by an ETS table
- Host: GitHub
- URL: https://github.com/ericentin/ets_map
- Owner: ericentin
- License: other
- Created: 2015-11-27T20:56:17.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-05T05:06:29.000Z (about 9 years ago)
- Last Synced: 2024-10-18T05:07:49.179Z (3 months ago)
- Language: Elixir
- Homepage:
- Size: 8.79 KB
- Stars: 8
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- freaking_awesome_elixir - Elixir - An Elixir package that provides a Map-like interface (Map/Access/Enumerable/Collectable) backed by an ETS table. (ORM and Datamapping)
- fucking-awesome-elixir - ets_map - An Elixir package that provides a Map-like interface (Map/Access/Enumerable/Collectable) backed by an ETS table. (ORM and Datamapping)
- awesome-elixir - ets_map - An Elixir package that provides a Map-like interface (Map/Access/Enumerable/Collectable) backed by an ETS table. (ORM and Datamapping)
README
# ETSMap
A Map-like Elixir data structure that is backed by an ETS table.
## Installation
The package can be installed by:
1. Adding ets_map to your list of dependencies in `mix.exs`:
def deps do
[{:ets_map, "~> 0.0.1"}]
end2. Ensuring ets_map is started before your application:
def application do
[applications: [:ets_map]]
end