https://github.com/bradmax-com/hxredis
https://github.com/bradmax-com/hxredis
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bradmax-com/hxredis
- Owner: bradmax-com
- License: mit
- Created: 2018-02-17T13:16:42.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-05-24T16:18:07.000Z (about 2 years ago)
- Last Synced: 2025-03-21T19:44:27.972Z (over 1 year ago)
- Language: Haxe
- Size: 104 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

Best haxe redis client ;)
INSTALLATION
============
```
haxelib install hxredis
```
HOW TO USE
==========
```
class Main
{
public static function main()
{
var r = new redis.Redis(false); // true if you want to use clusters
r.connect("127.0.0.1", 6379);
r.key.set("dupa", "dupa"));
trace(r.key.get("dupa")); // prints dupa
r.close();
}
}
```
COMMANDS
========
r.key.set()
bit
cluster
connection
hash
list
pubSub
script
server
set
sort
transaction
TODO
====
- tests
- lua cluster support