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: 7,408 of 180,477
Downloads: 397,770

Daily

Ranking: 17,990 of 180,469
Downloads: 10

Depended by

RankDownloadsName
11,183175,855resque-progress
31,63134,839patella
37,73027,660resque-result
54,53917,009resque-integration
63,51713,857resque-job-tracking
78,16810,226travis-ruby
144,1783,450resque-single

Depends on

RankDownloadsName
16854,665,206rake
17811,652,779json
83441,796,834resque

Owners

#GravatarHandle
1iconlmarlow