Join GitHub today
GitHub is home to over 36 million developers working together to host and review code, manage projects, and build software together.
Sign up
a redis client library for io
| Type | Name | Latest commit message | Commit time |
|---|---|---|---|
| Failed to load latest commit information. | |||
|
|
tests | ||
|
|
Iodis.io |
|
|
|
|
README | ||
|
|
TODO | ||
README
iodis ~ a redis client library for io
usage ~
$ io
i := Iodis clone connect
i set("foo", "bar") ==> OK
i get("foo") ==> bar
i rpush("jobs", "job1") ==> OK
i rpush("jobs", "job2") ==> OK
i lpop("jobs") ==> job1
tests ~
$ io tests/run.io
beware ~
iodis doesn't handle server timeouts. missing
commands for zsets, sorting & persistence /
remote server control. also, this is my first
io code, suggestions for improvements are more
than welcome.
credits ~
dekorte / io, antirez / redis
& ezmobius / redis-rb
license ~
the mit. google it.
(c) 2010 harry vangberg <harry@vangberg.name>