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,659 of 182,901
Downloads: 407,513

Daily

Ranking: 13,128 of 182,889
Downloads: 22

Depended by

RankDownloadsName
11,413184,662resque-progress
32,62735,182patella
38,99627,844resque-result
51,96118,993resque-integration
64,51814,187resque-job-tracking
79,23710,473travis-ruby
145,5403,548resque-single

Depends on

RankDownloadsName
10944,905,605rake
18900,521,142json
87243,932,792resque

Owners

#GravatarHandle
1iconlmarlow