public
Description:
Homepage: http://conveyor.rubyforge.org/
Clone URL: git://github.com/ryanking/conveyor.git
commit  5658f2f9e91ae20e7259322ea803b5bb2725b870
tree    6dbecb7757794e3c0ef45cb87e0b69bf1a94ec3b
parent  968dacdfc1f6378f52a2ed96fd338cb537f2725c
name age message
file .hgignore Thu May 08 13:41:29 -0700 2008 ignore data and log dirs [ryanking]
file History.txt Tue Oct 21 13:56:17 -0700 2008 release prep for 0.2.3 [ryanking]
file LICENSE Mon Jan 28 17:11:31 -0800 2008 adding a license [ryanking]
file Manifest.txt Tue Oct 21 13:56:17 -0700 2008 release prep for 0.2.3 [ryanking]
file README.txt Sat Oct 25 19:40:57 -0700 2008 updating README.txt about rewinding [ryanking]
file Rakefile Tue May 06 17:36:09 -0700 2008 add rack dependency [ryanking]
directory bin/ Sat Oct 25 20:14:35 -0700 2008 switching back to thin from mongrel [ryanking]
directory docs/ Sat Oct 25 19:41:56 -0700 2008 updating README.txt about rewinding [ryanking]
directory lib/ Sat Oct 25 20:48:27 -0700 2008 eliminate some string copying by using the stre... [ryanking]
directory test/ Sat Oct 25 20:15:21 -0700 2008 update benchmarking script: new client API + no... [ryanking]
README.txt
= Conveyor

by Ryan King (http://theryanking.com)

== Description

* Like TiVo for your data
* A distributed rewindable multi-queue

== Overview

A Conveyor server provides an HTTP interface that allows for POSTing and GETing items in streams called Channels.

POSTing is simple: you add an item to the channel and it gets persisted and assigned a sequence number.

Consuming items from a Channel is more flexible, you can:

* consume by id number ("GET /channels/foo/1337")
* consume by from a global queue ("GET /channels/foo?next")
* consume from a queue group ("GET /channels/foo?next&group=bar")
  * this allows multiple groups of consumers to each have what appears to them to be a queue.

The payload for all of these is a stream of bytes. Conveyor will stream it back exactly as it was given.

== REQUIREMENTS:

* Ruby
* Mongrel
* active_support

== INSTALL:

* gem install conveyor


== LICENSE:

(The MIT License)

Copyright (c) 2008 Ryan King

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.