Project

red_trend

0.0
No commit activity in last 3 years
No release in over 3 years
Store your trend data in redis
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

>= 0
 Project Readme

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

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Create your specs and feature code
  4. Commit your changes (git commit -am 'Added some feature')
  5. Push to the branch (git push origin my-new-feature)
  6. Create new Pull Request