Popularity
2.4
Stable
Activity
0.0
Stable
10
2
2
Monthly Downloads: 0
Programming language: Elixir
License: MIT License
Tags:
ORM And Datamapping
hstore alternatives and similar packages
Based on the "ORM and Datamapping" category.
Alternatively, view hstore alternatives based on common mentions on social networks and blogs.
-
eventstore
A CQRS EventStore using Postgres for persistence, written in Elixir. -
paper_trail
Ecto plugin for tracking and recording all the changes in your database. -
triplex
Database multitenancy with postgres schemas for Elixir applications! -
ExAudit
Ecto auditing library that transparently tracks changes and can revert them. -
xandra
Cassandra driver built natively in Elixir and focused on speed, simplicity, and robustness. -
shards
Transparent and out-of-box Sharding support for Erlang/Elixir ETS tables. -
extreme
An Elixir library using Eventstore for persistance of events generated by aggregates (CQRS). -
sqlitex
An Elixir wrapper around esqlite. Allows access to sqlite3 databases. -
kalecto
Glue between Kalends and Ecto for saving dates, times and datetimes. -
boltun
Transforms notifications from the Postgres LISTEN/NOTIFY mechanism into callback execution. -
couchdb_connector
A connector for CouchDB, the Erlang-based, JSON document database. -
mongodb_driver
Alternative driver for MongoDB with support for recent versions of MongoDB and comprehensive feature list.
Scout APM - Leading-edge performance monitoring starting at $39/month
Scout APM uses tracing logic that ties bottlenecks to source code so you know the exact line of code causing performance issues and can get back to building a great product faster.
Sponsored
scoutapm.com
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest. Visit our partner's website for more details.
Do you think we are missing an alternative of hstore or a related project?
Popular Comparisons
README
Hstore
HStore support for Postgrex
def deps do
[{:hstore, "~> 0.0.2"}]
end
Now all up in your iex -S mix
:
opts = [
hostname: "localhost",
username: "postgres",
database: "hstore_database",
encoder: &Hstore.encoder/3,
decoder: &Hstore.decoder/4,
formatter: &Hstore.formatter/1
]
{:ok, pid} = Postgrex.Connection.start_link(opts)
Postgrex.Connection.query(pid, "SELECT * FROM table_with_hstore", [])