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,703 of 192,290
Downloads: 427,222

Daily

Ranking: 28,840 of 192,263
Downloads: 6

Depended by

RankDownloadsName
12,432200,284resque-progress
35,74936,407patella
42,90728,549resque-result
48,74424,000resque-integration
66,65715,614resque-job-tracking
79,63211,966travis-ruby
145,3614,106resque-single

Depends on

RankDownloadsName
81,297,982,346rake
121,255,280,645json
94352,047,098resque

Owners

#GravatarHandle
1iconlmarlow