|
Revision 326, 1.6 kB
(checked in by gethema..@gmail.com, 2 weeks ago)
|
check in new backgroundrb code
|
| Line | |
|---|
| 1 |
2008-06-19 hemant kumar <hemant@shire.com> |
|---|
| 2 |
|
|---|
| 3 |
* Make binary parser iterative and hence won't blow your stack |
|---|
| 4 |
|
|---|
| 5 |
* Add run_concurrent |
|---|
| 6 |
|
|---|
| 7 |
* Let parent sleep for a while when forking the bdrb master process. |
|---|
| 8 |
|
|---|
| 9 |
* Fixed issue with fork. BackgrounDRb now uses fork and exec. |
|---|
| 10 |
|
|---|
| 11 |
2008-02-28 hemant kumar <hemant@shire> |
|---|
| 12 |
|
|---|
| 13 |
* fixed some meory leaks. |
|---|
| 14 |
|
|---|
| 15 |
* Implemented cleaner API for invoking tasks in workers |
|---|
| 16 |
|
|---|
| 17 |
* Updated the documentation |
|---|
| 18 |
|
|---|
| 19 |
2008-02-25 hemant kumar <hemant@shire> |
|---|
| 20 |
|
|---|
| 21 |
* Commited Patch by Alex which lets BackgrounDRb to have command line arguments and loading of specific environments |
|---|
| 22 |
through command line argument. |
|---|
| 23 |
|
|---|
| 24 |
2008-02-14 hemant kumar <hemant@shire> |
|---|
| 25 |
|
|---|
| 26 |
* Added TestCases for Cron Triggers, Meta Workers and stuff. We are heading towards proper code coverage with specs. |
|---|
| 27 |
|
|---|
| 28 |
* Added preliminary support for starting a worker on demand through scheduler. What it means is, when you have a worker which is getting |
|---|
| 29 |
scheduled very less frequently and you don't want the worker to persist, you can ask BackgrounDRb to restart the worker on each schedule. |
|---|
| 30 |
|
|---|
| 31 |
* Fixed some unreported issues with writing data to socket between workers and stuff. |
|---|
| 32 |
|
|---|
| 33 |
* Fixed issues with too many open connections, because connections were not getting closed. BackgrounDRb now opens only one connection, which is |
|---|
| 34 |
reused throughout the lifecycle of rails application. |
|---|
| 35 |
|
|---|
| 36 |
* Fixed all outstanding issues with Cron triggers, BackgrounDRb now explicitly depends on "chronic" gem. |
|---|
| 37 |
|
|---|
| 38 |
* Removed Framework directory and BackgrounDRb now explicitly depends on packet gem. |
|---|
| 39 |
|
|---|
| 40 |
|
|---|