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,363 of 187,239
Downloads: 419,826

Daily

Ranking: 18,850 of 187,224
Downloads: 24

Depended by

RankDownloadsName
12,055194,316resque-progress
34,50735,886patella
41,29228,278resque-result
50,30621,697resque-integration
65,76815,039resque-job-tracking
79,97211,246travis-ruby
146,1783,828resque-single

Depends on

RankDownloadsName
101,151,901,046rake
131,122,458,692json
93548,630,303resque

Owners

#GravatarHandle
1iconlmarlow