We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Hello all,
I created a small wrapper to use Redis in Processing. It's based on Jedis, a small Java client by Jonathan Leibiusky.
Redis is an open source, BSD licensed, advanced key-value store. It is often referred to as a data structure server since keys can contain strings, hashes, lists, sets and sorted sets. It's very fast and efficient. Withit you can "sync" multiple sketches with data. Have fun!
Repository: https://github.com/voidplus/redis-processing
Redis: http://redis.io/
Regards, Darius
Comments
Good! I am sure lot of Processing users can find an usage to Redis, eg. as an interesting alternative to loadStrings() / saveStrings() or similar.
I suggest to post here an interesting sample of usage of your library, to get an idea how it works, how easy it is to use it, how useful it can be...
This might be already on GitHub, but it is called marketing (hook users!). :-D
Hello,
I am wondering if there is some documentation how to use alle the Redis commands with Processing?
Given the number of Redis commands is limited -> Processing/Java documentation of the (most important) Redis commands would be really helpfull.
Below an example I made to demonstrate the command hmset
Thanks all, elfs