public
Description: Starling Message Queue
Homepage: http://starling.rubyforge.org
Clone URL: git://github.com/anotherbritt/starling.git
Search Repo:
name age message
folder History.txt Fri Feb 08 14:56:18 -0800 2008 Twitter's evented staring. [anotherbritt]
folder License.txt Fri Feb 08 14:56:18 -0800 2008 Twitter's evented staring. [anotherbritt]
folder Manifest.txt Fri Feb 08 14:56:18 -0800 2008 Twitter's evented staring. [anotherbritt]
folder README.txt Fri Feb 08 14:56:18 -0800 2008 Twitter's evented staring. [anotherbritt]
folder Rakefile Fri Feb 08 14:56:18 -0800 2008 Twitter's evented staring. [anotherbritt]
folder bin/ Fri Feb 08 15:21:12 -0800 2008 fix opt logging names and -v option to make log... [robey]
folder config/ Fri Feb 08 14:56:18 -0800 2008 Twitter's evented staring. [anotherbritt]
folder lib/ Wed Apr 30 18:43:19 -0700 2008 bump version to 0.9.6 [robey]
folder sample-config.yml Fri Feb 22 17:32:23 -0800 2008 add a config file option, and a sample config f... [Robey Pointer]
folder script/ Fri Feb 08 14:56:18 -0800 2008 Twitter's evented staring. [anotherbritt]
folder setup.rb Fri Feb 08 14:56:18 -0800 2008 Twitter's evented staring. [anotherbritt]
folder tasks/ Fri Feb 08 14:56:18 -0800 2008 Twitter's evented staring. [anotherbritt]
folder test/ Wed Apr 30 18:39:21 -0700 2008 oops, remove puts from the unit test [robey]
folder website/ Fri Feb 08 14:56:18 -0800 2008 Twitter's evented staring. [anotherbritt]
README.txt
= Name

Starling - a light weight server for reliable distributed message passing.

= Synopsis

  # Start the Starling server as a daemonized process:
  starling -h 192.168.1.1 -d

  # Put messages onto a queue:
  require 'memcache'
  starling = MemCache.new('192.168.1.1:22122')
  starling.set('my_queue', 12345)

  # Get messages from the queue:
  require 'memcache'
  starling = MemCache.new('192.168.1.1:22122')
  loop { puts starling.get('my_queue') }

  # See the Starling documentation for more information.

= Description

Starling is a powerful but simple messaging server that enables reliable 
distributed queuing with an absolutely minimal overhead. It speaks the
MemCache protocol for maximum cross-platform compatibility. Any language
that speaks MemCache can take advantage of Starling's queue facilities.

= Known Issues

* Starling is "slow" as far as messaging systems are concerned. In practice,
  it's fast enough.

= Authors

Blaine Cook <romeda@gmail.com>

= Copyright

Starling - a light-weight server for reliable distributed message passing.
Copyright 2007 Blaine Cook <blaine@twitter.com>, Twitter Inc.

<<to be completed>>