search for: bdrb_job_queu

Displaying 2 results from an estimated 2 matches for "bdrb_job_queu".

Did you mean: bdrb_job_queues
2009 Mar 27
1
UTF8 postgres args saving issue
...s not match the encoding expected by the server, which is controlled by "client_encoding". Here''s the SQL that gets send to the database (note that the dump-ed args are written as a string): F.\src\backend\utils\mb\wchar.c L1545 Rreport_invalid_encoding: INSERT INTO "bdrb_job_queues" ("args", "job_key", "taken", "worker_key", "worker_method", "priority", "finished_at", "tag", "worker_name", "timeout", "submitted_at", "finished", "runner_info"...
2008 May 04
12
best approach to managing workers and getting status
Hi, I am using backgroundrb to process audio files from a rails controller. Currently a new worker gets created every time the method is called on the worker, using this code: @job_key = MiddleMan.new_worker(:worker => :audio_file_worker, :job_key => Time.now.to_i) MiddleMan.worker(:audio_file_worker, @job_key).make_new_audio_file(params[:release_id]) I need to create the new