postgres_cache_store v0.4.0

Cache::Store implementation backed by a PostgreSQL database

Cache::PostgresCacheStore

Crystal CI GitHub release

A cache store implementation which stores everything in the Postgres database, using crystal-pg as the backend.

Cache::PostgresCacheStore is a Crystal cache backed by a Postgres UNLOGGED table and text column.

Installation

  1. Add the dependency to your shard.yml:

    dependencies:
      postgres_cache_store:
        github: crystal-cache/postgres_cache_store
    
  2. Run shards install

Usage

Before using this shard make sure you have created Postgres database. For example cache_production:

psql -c 'CREATE DATABASE cache_production;' -U postgres

A Postgres database can be opened with:

db = DB.open("postgres://postgres@localhost/cache_production")

Open and use the new cache instance:

require "postgres_cache_store"

cache = Cache::PostgresCacheStore(String, String).new(1.minute, db)

cache.write("foo", "bar")

cache.read("foo") # => "bar"

Contributing

  1. Fork it (https://github.com/crystal-cache/postgres_cache_store/fork)
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Contributors

Repository

postgres_cache_store

Owner
Statistic
  • 7
  • 0
  • 0
  • 0
  • 3
  • over 1 year ago
  • January 5, 2021
License

MIT License

Links
Synced at

Fri, 03 May 2024 11:04:30 GMT

Languages