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,512 of 188,757
Downloads: 422,691

Daily

Ranking: 12,429 of 188,742
Downloads: 47

Depended by

RankDownloadsName
12,206196,489resque-progress
34,98436,186patella
41,99728,431resque-result
49,39222,856resque-integration
65,97515,385resque-job-tracking
79,24011,718travis-ruby
145,8483,963resque-single

Depends on

RankDownloadsName
101,202,260,445rake
121,175,331,415json
93650,061,479resque

Owners

#GravatarHandle
1iconlmarlow