README.md in toiler-0.4.0 vs README.md in toiler-0.4.1
- old
+ new
@@ -6,11 +6,9 @@
##Features
###Concurrency
Toiler allows to specify the amount of processors (threads) that should be spawned for each queue.
Instead of [shoryuken's](https://github.com/phstc/shoryuken) loadbalancing approach, Toiler delegates this work to the kernel scheduling threads.
-Because Toiler uses threads to provide concurrency, **each thread instatiates a new worker**, as it should be expected, so please **use class variables to store shared variables like clients**.
-
###Long-Polling
A Fetcher thread is spawned for each queue.
Fetchers are resposible for polling SQS and retreiving messages.
They are optimised to not bring more messages than the amount of processors avaiable for such queue.
By long-polling fetchers wait for a configurable amount of time for messages to become available on a single request, this prevents unneccesarilly requesting messages when there are none.