This repository has been archived by the owner. It is now read-only.

crom-redis.cr

Redis backend for CROM ( CRystal Object Mapper)

crom-redis

Redis backend for CROM ( CRystal Object Mapper)

Installation

Add this to your application's shard.yml:

dependencies:
  crom-redis:
    github: TechMagister/crom-redis.cr

Features

  • Insert Basic Object
  • Update Basic Object
  • Delete Basic Object
  • Fetch by Id
  • Aggregation support

Usage

require "crom-redis"

class User
  CROM.mapping(:redis, {
    name: String,
    age:  Int32,
  })
end

class Users < CROM::Redis::Repository(User)
end

crom = CROM.container("redis://") # eq redis://localhost:6379

# user_repo = Users.new crom
# or
# CROM.register_repository Users.new crom
# if repo = Users.repo
#   ... do stuff ...
# end

Development

To run spec, run a redis server and configure the URI in ./spec/spec_helper.cr

Contributing

  1. Fork it ( https://github.com/TechMagister/crom-redis.cr/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

crom-redis.cr

Owner
Statistic
  • 2
  • 0
  • 0
  • 0
  • 2
  • over 7 years ago
  • November 5, 2016
License

MIT License

Links
Synced at

Wed, 01 May 2024 15:45:32 GMT

Languages