Categories: None [Edit]
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: 7,887 of 183,477
Downloads: 409,039
Daily
Ranking: 8,797 of 183,470
Downloads: 25
Downloads Trends
Ranking Trends
Num of Versions Trends
Popular Versions (Major)
Popular Versions (Major.Minor)
Depended by
Rank | Downloads | Name |
---|---|---|
11,500 | 185,931 | resque-progress |
32,887 | 35,259 | patella |
39,310 | 27,886 | resque-result |
51,812 | 19,284 | resque-integration |
64,751 | 14,260 | resque-job-tracking |
79,506 | 10,528 | travis-ruby |
145,821 | 3,571 | resque-single |
Owners
# | Gravatar | Handle |
---|---|---|
1 | lmarlow |