Displaying 2 results from an estimated 2 matches for "blockin".
Did you mean:
blocking
2008 Oct 29
1
Is anyone using * for 2 way video conferencing?
...What would be the best configuration for this? We are talking about two
conference rooms.
I am referring to the actual hardware/software and bandwidth requirements
for this to work well.
I have run two software video phones and I had marginal results with it when
displayed on large LCDs, delay and blockines ware the problems I have run
into ...
Sincerely,
Robert Augustyn
<http://www.linqone.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20081029/20d13f68/attachment.htm
2006 Oct 04
0
do_work and long running rails tasks?
Hi there
I have some long running queries against a nice litte database (20
million new records per day) that I have offloaded to backgroundRB.
The trouble is, that backgroundrb seems to be blockin on Model.find
calls.
Here''s the code
--- worker.rb --
def do_work(args)
@rows = []
@percent = 0
@host = Host.find( args[:id])
ips = @host.ipaddresses
step = 100.0/ips.size
ips.each do |ip|
@percent += step
new_rows = Sysloglog.find(:all...