https://github.com/pomettini/uniredis
[WIP] Simple Redis Client for Unity
https://github.com/pomettini/uniredis
redis redis-client unity unity3d
Last synced: about 1 year ago
JSON representation
[WIP] Simple Redis Client for Unity
- Host: GitHub
- URL: https://github.com/pomettini/uniredis
- Owner: pomettini
- License: mit
- Created: 2018-06-18T14:43:51.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2020-03-09T00:17:19.000Z (over 6 years ago)
- Last Synced: 2025-03-24T03:11:23.668Z (over 1 year ago)
- Topics: redis, redis-client, unity, unity3d
- Language: C#
- Homepage:
- Size: 27.3 KB
- Stars: 7
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Uniredis
Simple Redis Client for Unity
This client is not actively maintained and it's still work in progress, but you're free to contribute if you want 🙂
## Example (using the SET command)
```csharp
Uniredis.Set(this, "Hello", "World", (error, result) =>
{
if (error == null)
{
Debug.Log(result);
}
});
```
## Featuring
* Unity-like APIs
* Tested codebase
## Limitations
* Only a database at a time is supported (for now)
## Commands Supported
### Strings
- [ ] APPEND
- [ ] BITCOUNT
- [x] SET
- [ ] SETNX
- [ ] SETRANGE
- [ ] STRLEN
- [ ] MSET
- [ ] MSETNX
- [x] GET
- [ ] GETRANGE
- [ ] MGET
- [ ] INCR
- [ ] INCRBY
- [ ] INCRBYFLOAT
- [ ] DECR
- [ ] DECRBY
- [ ] DEL
- [ ] EXPIRE
- [ ] TTL
### Sets
- [ ] SADD
- [ ] SCARD
- [ ] SREM
- [ ] SISMEMBER
- [ ] SMEMBERS
- [ ] SUNION
- [ ] SINTER
- [ ] SMOVE
- [ ] SPOP
### Sorted Sets
- [ ] ZADD
- [ ] ZCARD
- [ ] ZCOUNT
- [ ] ZINCRBY
- [ ] ZRANGE
- [ ] ZRANK
- [ ] ZREM
- [ ] ZREMRANGEBYRANK
- [ ] ZREMRANGEBYSCORE
- [ ] ZSCORE
- [ ] ZRANGEBYSCORE
### Hashes
- [ ] HGET
- [ ] HGETALL
- [ ] HSET
- [ ] HSETNX
- [ ] HMSET
- [ ] HINCRBY
- [ ] HDEL
- [ ] HEXISTS
- [ ] HKEYS
- [ ] HLEN
- [ ] HSTRLEN
- [ ] HVALS
### HyperLogLog
- [ ] PFADD
- [ ] PFCOUNT
- [ ] PFMERGE
- [ ] PSUBSCRIBE
- [ ] PUBSUB
- [ ] PUBLISH
- [ ] PUNSUBSCRIBE
- [ ] SUBSCRIBE
- [ ] UNSUBSCRIBE
### Other
- [ ] KEYS