RedTrend
Store your trend data in redis.
Installation
Add this line to your application's Gemfile:
gem 'red_trend'
And then execute:
$ bundle
Or install it yourself as:
$ gem install red_trend
Usage
require 'red_trend'
red_trend = RedTrend.new(:prefix => "project:9")
red_trend.record("post_views", 42)
red_trend.record("post_views", 53)
red_trend.record("post_views", 53)
red_trend.top("post_views") # => ["53", "42"]
TODO add configuration examples here
How it works
TODO
Todos
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Create your specs and feature code
- Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request