bs / starling
- Source
- Commits
- Network (0)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
commit f96cfbea46216ad93d83136dbbcc848a3fd92623
tree 4acacf0231510778d3acd3fd31d140f8fcc42204
parent b942ed8f71d6cef8e48e52653e0ca7c021d5b66e
tree 4acacf0231510778d3acd3fd31d140f8fcc42204
parent b942ed8f71d6cef8e48e52653e0ca7c021d5b66e
starling /
| name | age | message | |
|---|---|---|---|
| |
History.txt | ||
| |
License.txt | ||
| |
Manifest.txt | ||
| |
README.txt | ||
| |
Rakefile | ||
| |
bin/ | ||
| |
config/ | ||
| |
lib/ | ||
| |
sample-config.yml | ||
| |
script/ | ||
| |
setup.rb | ||
| |
tasks/ | ||
| |
test/ | ||
| |
website/ |
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>>

