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: 9,064 of 195,762
Downloads: 430,393

Daily

Ranking: 13,245 of 195,747
Downloads: 55

Depended by

RankDownloadsName
12,786202,914resque-progress
36,50236,661patella
43,83328,676resque-result
48,72124,871resque-integration
67,34915,901resque-job-tracking
80,02912,275travis-ruby
145,9474,232resque-single

Depends on

RankDownloadsName
81,384,293,602rake
91,343,682,665json
95053,980,915resque

Owners

#GravatarHandle
1iconlmarlow