Displaying 7 results from an estimated 7 matches for "nuthol".
Did you mean:
nuthole
2007 May 22
4
Recommendations for eternally-running backgroundrb workers?
...er calls into a "script/backgroundrb
console" or just "script/console" session (is that any better?)
As you can see, neither of these options seems very appealing to me.
I can''t be the first person to do this... How are others handling
this?
--
// jack
// http://www.nuthole.com
2007 Mar 05
4
nil object / slave server problem
...35:in
`initialize''
FWIW, here''s what my backgroundrb.yml looks like:
---
:rails_env: development
:host: localhost
:port: 2000
:acl:
:deny: all
:allow: localhost 127.0.0.1
:order: deny allow
Any ideas? A misconfiguration on my part, perhaps?
--
// jack
// http://www.nuthole.com
2007 Mar 05
3
postgres barfage revisted
...n there for *some* reason. I
think I read somewhere that Backgroundrb changed from a multi-thread
to a multi-process architecture not too long ago; Is that line,
setting allow_concurrency to true, a holdover from the multi-threaded
days that''s no longer needed?
--
// jack
// http://www.nuthole.com
2007 Mar 13
5
worker starting twice
...nTrigger:0x23bf3c4 @year=nil, @day=1..31,
@cron_expr="0,10,20,30,40,50 * * * * * *", @sec=[0, 10, 20, 30, 40,
50], @wday=0..6, @min=0..59, @month=1..12, @hour=0..23>, earliest=Tue
Mar 13 15:45:30 +0100 2007, last=Tue Mar 13 15:45:30 +0100 2007>
Any ideas?
--
// jack
// http://www.nuthole.com
2008 Jan 17
3
periodic scheduling
...instances and threads. For example, if I call
MiddleMan.new_worker(), does it actually create a new instance of my
worker class (as the old version did), and if so, is that instance in
a new thread of its own? How about MiddleMan.ask_work() and
MiddleMan.send_request()?
--
// jack
// http://www.nuthole.com
2008 Oct 10
2
magical disappearing background processes!
...'m nowhere near
maxing out system memory, and there are no memory or other limits set
on user processes as far as I can tell. If anyone has any ideas about
what might cause this, or how to dig deeper, please let me know! I''m
nearly at my wits'' end.
--
// jack
// http://www.nuthole.com
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