Displaying 3 results from an estimated 3 matches for "result_storage".
2007 Dec 17
1
Some more updates, enhancements and fixes
...f list:
1. Results from worker stays even after a worker dies.
2. You can ask backgroundrb to store status objects in memcache
cluster now. by default its stored in master process memory, but I
have introduced an option to allow it to be stored in a memcache
cluster:
#backgroundbr.yml
:result_storage:
:memcache: "10.10.10.2.11211,10.10.10.6:11211"
3. Check for Ruby version.
4. Introduced Thread pool now, all the workers have access to
"thread_pool" object, which can be used to run concurrent tasks in
ruby threads:
An example,
def scrap_wikipedia(text...
2008 Jan 09
0
BackgrounDRb 1.0.1 release available now
...by you in worker code)
* Removed messing around with Core classes. BackgrounDRb doesn''t
change behavior of any core classes now.
* Worker status objects stay even after a worker dies.
* BackgrounDRb can now store worker results/status objects in Memcache now.
#backgroundbr.yml
:result_storage:
:memcache: "10.10.10.2.11211,10.10.10.6:11211"
* Fixed issues with thread pool.
* Committed Patches by Jason for test helper.
* Committed patch for honoring wday option by Adam.
News:
* Advanced Rails Recipes book contains a full recipe on using
BackgrounDRb now, hurray.
U...
2007 Dec 17
11
BackgrounDRb release 1.0 available now
...master process memory, but
you can configure BackgrounDRb to store these results in a memcache
server or a cluster using following option in configuration file:
# backgroundrb.yml
| :backgroundrb:
| :port: 11006
| :ip: 0.0.0.0
| :log: foreground
| :result_storage:
| :memcache: "10.10.10.2:11211,10.10.10.6:11211"
- Relevant URLs:
** Home Page: http://backgroundrb.rubyforge.org
** SVN : http://svn.devjavu.com/backgroundrb/trunk
** Bug Reports/Ticks: http://backgroundrb.devjavu.com/report
- Credits :
** Ezra Zygmuntowicz,skaar for taking...