{"id":15661975,"url":"https://github.com/nok/redis-processing","last_synced_at":"2025-05-05T23:05:11.472Z","repository":{"id":12065011,"uuid":"14651783","full_name":"nok/redis-processing","owner":"nok","description":"[unmaintained] Wrapper to use Redis in Processing. It's based on Jedis, a small Java client by Jonathan Leibiusky.","archived":false,"fork":false,"pushed_at":"2015-02-05T15:24:48.000Z","size":4653,"stargazers_count":19,"open_issues_count":0,"forks_count":2,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-05-05T23:05:07.003Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nok.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-11-23T22:38:32.000Z","updated_at":"2019-08-13T15:30:37.000Z","dependencies_parsed_at":"2022-09-07T04:02:12.626Z","dependency_job_id":null,"html_url":"https://github.com/nok/redis-processing","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nok%2Fredis-processing","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nok%2Fredis-processing/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nok%2Fredis-processing/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nok%2Fredis-processing/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nok","download_url":"https://codeload.github.com/nok/redis-processing/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252590573,"owners_count":21772936,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-03T13:29:43.331Z","updated_at":"2025-05-05T23:05:11.432Z","avatar_url":"https://github.com/nok.png","language":"Java","funding_links":[],"categories":["Libraries"],"sub_categories":["Contributions"],"readme":"# Redis for Processing\n\nWrapper to use [Redis](http://redis.io/) in [Processing](http://processing.org/). It's based on [Jedis](https://github.com/xetorthio/jedis), a small Java client by [Jonathan Leibiusky](https://github.com/xetorthio).\n\n\n## Table of Contents\n\n- [About](#about)\n- [Download](#download)\n- [Installation](#installation)\n- [Tested](#tested)\n- [Examples](#examples)\n- [Usage](#usage)\n- [Links](#links)\n- [Questions?](#questions)\n- [License](#license)\n\n\n## About\n\n[Introduction to Redis](http://redis.io/topics/introduction): 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.\n\n\n## Download\n\n* [Redis-Wrapper v1.1.2](download/Redis.zip?raw=true) includes **Jedis v3.0.0** with **Redis v2.8.5** support.\n\n\n## Installation\n\n\n### Processing library\n\nUnzip and put the extracted *Redis* folder into the libraries folder of your Processing sketches. Reference and examples are included in the *Redis* folder. For more help read the [tutorial](http://www.learningprocessing.com/tutorials/libraries/) by [Daniel Shiffman](https://github.com/shiffman).\n\n\n### Redis server\n\nYou can follow the official installation steps [here](http://redis.io/download):\n\n```bash\n$ wget http://download.redis.io/releases/redis-2.8.19.tar.gz\n$ tar xzf redis-2.8.19.tar.gz\n$ cd redis-2.8.19\n$ make\n```\n\nOr you can use [Homebrew](http://brew.sh/) (OS X):\n\n```bash\n$ brew install redis\n```\n\n## Tested\n\nSystem:\n\n* **OSX** (10.10 Yosemite)\n* **Windows** (*not tested yet, but x86 and x64 should work*)\n\nProcessing Version:\n\n* **2.2.1**\n* 2.1.1\n* 2.1.0\n\n\n## Examples\n\n* [Basic](#usage) → [e1_basic.pde](examples/e1_basic/e1_basic.pde)\n\n\n## Usage\n\nStart a Redis server:\n\n```bash\n$ redis-server --port 6379\n```\n\nRun the following sketch:\n\n```java\nimport de.voidplus.redis.*;\n\nRedis redis;\n\nvoid setup(){\n    // ...\n    \n    redis = new Redis(this, \"127.0.0.1\", 6379);\n    \n    redis.set(\"key\", \"value\");\n    println(redis.get(\"key\"));\n}\n```\n\n\n## Links\n\nUseful links for developers:\n\n* [Jedis](https://github.com/xetorthio/jedis#so-what-can-i-do-with-jedis)\n* [Redis](http://redis.io/)\n* [Redis Documentation](http://redis.io/documentation)\n* [Redis Commands](http://redis.io/commands)\n\n\n## Questions?\n\nDon't be shy and feel free to contact me on Twitter: [@darius_morawiec](https://twitter.com/darius_morawiec)\n\n\n## License\n\nThe wrapper is Open Source Software released under the [License](LICENSE.txt).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnok%2Fredis-processing","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnok%2Fredis-processing","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnok%2Fredis-processing/lists"}