Categories: None [Edit]

resque-meta

https://rubygems.org/gems/resque-meta
https://github.com/lmarlow/resque-meta
A Resque plugin. If you want to be able to add metadata for a job to track anything you want, extend it with this module. For example: require 'resque-meta' class MyJob extend Resque::Plugins::Meta def self.perform(meta_id, *args) heavy_lifting end end meta0 = MyJob.enqueue('stuff') meta0.enqueued_at # => 'Wed May 19 13:42:41 -0600 2010' meta0.meta_id # => '03c9e1a045ad012dd20500264a19273c' meta0['foo'] = 'bar' # => 'bar' meta0.save # later meta1 = MyJob.get_meta('03c9e1a045ad012dd20500264a19273c') meta1.job_class # => MyJob meta1.enqueued_at # => 'Wed May 19 13:42:41 -0600 2010' meta1['foo'] # => 'bar'

Total

Ranking: 8,411 of 187,591
Downloads: 420,563

Daily

Ranking: 22,660 of 187,571
Downloads: 21

Depended by

RankDownloadsName
12,092194,787resque-progress
34,63335,951patella
41,44028,331resque-result
50,00222,029resque-integration
65,76115,146resque-job-tracking
79,76511,375travis-ruby
146,1273,869resque-single

Depends on

RankDownloadsName
101,165,649,814rake
131,136,237,797json
93648,957,059resque

Owners

#GravatarHandle
1iconlmarlow