fmq 0.1.1 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.txt +24 -0
- data/License.txt +675 -0
- data/PostInstall.txt +3 -0
- data/README.txt +69 -0
- data/config/hoe.rb +73 -0
- data/config/requirements.rb +15 -0
- data/default-server/admin-interface/index.html +7 -7
- data/default-server/queues/my_test.rb +6 -15
- data/lib/fmq/client.rb +52 -19
- data/lib/fmq/mongrel_server.rb +43 -24
- data/lib/fmq/queue_manager.rb +265 -260
- data/lib/fmq/queues/README.txt +12 -21
- data/lib/fmq/queues/admin.rb +11 -22
- data/lib/fmq/queues/base.rb +75 -0
- data/lib/fmq/queues/file.rb +6 -19
- data/lib/fmq/queues/forward.rb +7 -12
- data/lib/fmq/queues/linked.rb +28 -59
- data/lib/fmq/queues/load_balanced.rb +105 -104
- data/lib/fmq/queues/syncronized.rb +54 -55
- data/lib/fmq/version.rb +2 -2
- data/test/test_basic.rb +36 -0
- data/test/test_fmq_client.rb +33 -26
- data/test/test_helper.rb +5 -1
- data/test/test_linked.rb +65 -0
- data/test/test_queue_manager.rb +90 -0
- metadata +22 -5
- data/setup.rb +0 -1585
- data/test/test_fmq_queue.rb +0 -47
data/History.txt
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
== 0.2.0 2008-06-28
|
2
|
+
* 3 minor enhancements:
|
3
|
+
* added a BaseQueue that can be used by other queues to reduce overhead
|
4
|
+
* created unit test for most important classes
|
5
|
+
* the system now fully supports the adding of meta data to messages by passing http parameters
|
6
|
+
* 3 tiny changes:
|
7
|
+
* changes to the documentation of creating custom queues
|
8
|
+
* streamlined the linked queue (making use of BaseQueue)
|
9
|
+
* update some parts of the website and admin interface
|
10
|
+
|
11
|
+
== 0.1.1 2008-06-23
|
12
|
+
* 7 tiny enhancements:
|
13
|
+
* make the queue manager check if the poll or put to or from a queue is possible
|
14
|
+
* changed mongrel handler to no raise an exception on client error (performance issue)
|
15
|
+
* moved the creation of the fmq logger to the configuration class
|
16
|
+
* aliases for post and get on client and server sides
|
17
|
+
* cleanup some queues (removed methods bytes and size)
|
18
|
+
* added a new queue: ForwardQueue
|
19
|
+
* added some rdoc and documentation
|
20
|
+
|
21
|
+
== 0.1.0 2008-06-22
|
22
|
+
|
23
|
+
* 1 minor enhancement:
|
24
|
+
* This is the initial release
|