Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
rpetrich committed Apr 10, 2010
0 parents commit 90c5905
Show file tree
Hide file tree
Showing 2 changed files with 1,167 additions and 0 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# redis.net
### an efficient, binary-safe redis client library in c#
#### Author: Ryan Petrich
#### Inspired by <a href="http://www.github.com/migueldeicaza">migueldeicaza</a>'s <a href="http://github.com/migueldeicaza/redis-sharp">redis-sharp</a>
_redis.net is in early alpha testing and needs your feedback_

##
### Example:
using (var connection = new RedisConnection()) {
connection.Set("foo", "bar");
Debug.Print("foo = {0}", (string)connection.Get("foo").Result);
}
Loading

0 comments on commit 90c5905

Please sign in to comment.