forked from redis/redis-doc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tools.json
601 lines (601 loc) · 20.1 KB
/
tools.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
[
{
"name": "Resque",
"language": "Ruby",
"repository": "https://github.com/resque/resque",
"description": "Resque is a Redis-backed Ruby library for creating background jobs, placing them on multiple queues, and processing them later.",
"authors": ["defunkt"]
},
{
"name": "Rq",
"language": "Python",
"repository": "https://github.com/nvie/rq",
"description": "Minimalistic Python task queue. Supports only Redis.",
"authors": ["nvie"]
},
{
"name": "Celery",
"language": "Python",
"repository": "https://github.com/ask/celery",
"description": "Python task queue. Supports multiple backends.",
"authors": ["asksol"]
},
{
"name": "Fnordmetric",
"language": "Ruby",
"repository": "https://github.com/paulasmuth/fnordmetric",
"description": "Redis/ruby-based realtime Event-Tracking app.",
"authors": ["paulasmuth"]
},
{
"name": "Ohm",
"language": "Ruby",
"repository": "https://github.com/soveran/ohm",
"description": "Object-hash mapping library for Redis.",
"authors": ["soveran"]
},
{
"name": "Kombu",
"language": "Python",
"repository": "https://github.com/celery/kombu",
"description": "Python AMQP Framework with Redis support",
"authors": []
},
{
"name": "Sider",
"language": "Python",
"repository": "https://github.com/dahlia/sider",
"description": "Python persistent object library based on Redis.",
"authors": ["hongminhee"]
},
{
"name": "readis",
"language": "PHP",
"url": "https://readis.hollo.me",
"repository": "https://github.com/hollodotme/readis",
"description": "Lightweight web frontend in PHP for reading data, stats and config from multiple Redis servers.",
"authors": ["hollodotme"]
},
{
"name": "Redis-objects",
"language": "Ruby",
"repository": "https://github.com/nateware/redis-objects",
"description": "Map Redis types directly to Ruby objects.",
"authors": ["nateware"]
},
{
"name": "Redisco",
"language": "Python",
"repository": "https://github.com/iamteem/redisco",
"description": "Loose implementation of Ohm in Python (see above for Ohm project) - Warning: Not actively maintained at the moment.",
"authors": ["iamteem"]
},
{
"name": "Redis-rdb-tools",
"language": "Python",
"repository": "https://github.com/sripathikrishnan/redis-rdb-tools",
"description": "Parse Redis dump.rdb files, Analyze Memory, and Export Data to JSON.",
"authors": ["srithedabbler"]
},
{
"name": "Rdb-parser",
"language": "Javascript",
"repository": "https://github.com/pconstr/rdb-parser",
"description": "node.js asynchronous streaming parser for Redis RDB database dumps.",
"authors": ["pconstr"]
},
{
"name": "Redis-sync",
"language": "Javascript",
"repository": "https://github.com/pconstr/redis-sync",
"description": "A node.js Redis replication slave toolkit",
"authors": ["pconstr"]
},
{
"name": "Ost",
"language": "Ruby",
"repository": "https://github.com/soveran/ost",
"description": "Redis based queues and workers.",
"authors": ["soveran"]
},
{
"name": "Meerkat",
"language": "Ruby",
"repository": "http://carlhoerberg.github.io/meerkat/",
"description": "Rack middleware for Server Sent Events with multiple backends.",
"authors": ["carlhoerberg"]
},
{
"name": "Redis-sampler",
"language": "Ruby",
"repository": "https://github.com/antirez/redis-sampler",
"description": "Sample a Redis DB to understand dataset composition.",
"authors": ["antirez"]
},
{
"name": "Recommendify",
"language": "Ruby",
"repository": "https://github.com/paulasmuth/recommendify",
"description": "Ruby/Redis based recommendation engine (collaborative filtering).",
"authors": ["paulasmuth"]
},
{
"name": "Redis-store",
"language": "Ruby",
"repository": "https://github.com/redis-store/redis-store",
"description": "Namespaced Rack::Session, Rack::Cache, I18n and cache Redis stores for Ruby web frameworks.",
"authors": ["jodosha"]
},
{
"name": "Redmon",
"language": "Ruby",
"repository": "https://github.com/steelThread/redmon",
"description": "A web interface for managing Redis: cli, admin, and live monitoring.",
"authors": ["steel_thread"]
},
{
"name": "Rollout",
"language": "Ruby",
"repository": "https://github.com/FetLife/rollout",
"description": "Conditionally roll out features with Redis.",
"authors": ["jamesgolick"]
},
{
"name": "Webdis",
"language": "C",
"url": "http://webd.is/",
"repository": "https://github.com/nicolasff/webdis",
"description": "A Redis HTTP interface with JSON output.",
"authors": ["yowgi"]
},
{
"name": "Soulmate",
"language": "Ruby",
"repository": "https://github.com/seatgeek/soulmate",
"description": "Redis-backed service for fast autocompleting.",
"authors": ["seatgeek"]
},
{
"name": "Redis_failover",
"language": "Ruby",
"repository": "https://github.com/ryanlecompte/redis_failover",
"description": "Redis Failover is a ZooKeeper-based automatic master/slave failover solution for Ruby.",
"authors": ["ryanlecompte"]
},
{
"name": "Redis-dump",
"language": "Ruby",
"repository": "https://github.com/delano/redis-dump",
"description": "Backup and restore your Redis data to and from JSON. Warning: alpha code.",
"authors": ["solutious"]
},
{
"name": "Sidekiq",
"language": "Ruby",
"repository": "http://sidekiq.org/",
"description": "Simple, efficient message processing for your Rails 3 application.",
"authors": ["mperham"]
},
{
"name": "Omhiredis",
"language": "C",
"repository": "http://www.rsyslog.com/doc/build_from_repo.html",
"description": "Redis output plugin for rsyslog (rsyslog dev, and rsyslog head).",
"authors": ["taotetek"]
},
{
"name": "Mod_redis",
"language": "C",
"repository": "https://github.com/sneakybeaky/mod_redis",
"description": "An Apache HTTPD module for speaking to Redis via HTTP",
"authors": []
},
{
"name": "leaderboard",
"language": "Ruby",
"repository": "https://github.com/agoragames/leaderboard",
"description": "Leaderboards backed by Redis.",
"authors": ["czarneckid"]
},
{
"name": "Redis-rdb",
"language": "Ruby",
"repository": "https://github.com/nrk/redis-rdb",
"description": "A set of utilities to handle Redis .rdb files with Ruby.",
"authors": ["JoL1hAHN"]
},
{
"name": "Lua-ohm",
"language": "Lua",
"repository": "https://github.com/slact/lua-ohm",
"description": "Lua Redis Object-hash-mapping and more",
"authors": []
},
{
"name": "PHP-Resque",
"language": "PHP",
"repository": "https://github.com/chrisboulton/php-resque",
"description": "Port of Resque to PHP.",
"authors": ["surfichris"]
},
{
"name": "phpRedisAdmin",
"language": "PHP",
"repository": "https://github.com/ErikDubbelboer/phpRedisAdmin",
"description": "phpRedisAdmin is a simple web interface to manage Redis databases.",
"authors": []
},
{
"name": "HighcoTimelineBundle",
"language": "PHP",
"repository": "https://github.com/stephpy/timeline-bundle",
"description": "TimelineBundle is a Bundle which works with Symfony 2.* which provides a timeline for a subject as Facebook can do.",
"authors": ["stephpy"]
},
{
"name": "Stdnet",
"language": "Python",
"repository": "https://github.com/lsbardel/python-stdnet",
"description": "Redis data manager with advanced query and search API.",
"authors": ["lsbardel"]
},
{
"name": "Retools",
"language": "Python",
"repository": "https://github.com/bbangert/retools",
"description": "Caching and locking helper library.",
"authors": ["benbangert"]
},
{
"name": "Redback",
"language": "Javascript",
"repository": "http://github.com/chriso/redback",
"description": "Higher-level Redis constructs - social graph, full text search, rate limiting, key pairs.",
"authors": []
},
{
"name": "Recurrent",
"language": "Javascript",
"repository": "https://github.com/pconstr/recurrent",
"description": "A Redis-backed manager of recurrent jobs, for node.js",
"authors": ["pconstr"]
},
{
"name": "Amico",
"language": "Ruby",
"repository": "https://github.com/agoragames/amico",
"description": "Relationships (e.g. friendships) backed by Redis.",
"authors": ["czarneckid"]
},
{
"name": "Redis Qi4j EntityStore",
"language": "Java",
"repository": "https://github.com/qi4j/qi4j-sdk",
"description": "Qi4j EntityStore backed by Redis",
"authors": ["eskatos"]
},
{
"name": "Spring Data Redis",
"language": "Java",
"url": "http://projects.spring.io/spring-data-redis/",
"repository": "https://github.com/spring-projects/spring-data-redis",
"description": "Spring integration for Redis promoting POJO programming, portability and productivity",
"authors": ["costinl"]
},
{
"name": "PHPRedMin",
"language": "PHP",
"repository": "https://github.com/sasanrose/phpredmin",
"description": "Yet another web interface for Redis with multi-server support",
"authors": ["sasanrose"]
},
{
"name": "redis-tcl",
"language": "Tcl",
"repository" : "https://github.com/bradvoth/redis-tcl",
"description" : "Tcl library largely copied from the Redis test tree, modified for minor bug fixes and expanded pub/sub capabilities",
"authors" : ["bradvoth","antirez"]
},
{
"name": "Redis Desktop Manager",
"language": "C++",
"url": "http://redisdesktop.com",
"repository": "https://github.com/uglide/RedisDesktopManager",
"description": "Cross-platform desktop GUI management tool for Redis",
"authors": ["u_glide"]
},
{
"name": "QRedis",
"language": "Python",
"repository": "https://github.com/tiagocoutinho/qredis",
"description": "Python, Qt based redis GUI",
"authors": ["tiagocoutinho"]
},
{
"name": "FastoRedis",
"language": "C++",
"url": "http://fastoredis.com",
"repository": "https://github.com/fastogt/fastoredis",
"description": "Cross-platform Redis, Memcached management tool.",
"authors": ["topilski"]
},
{
"name": "Nydus",
"language": "Python",
"url": "https://pypi.python.org/pypi/nydus",
"repository": "https://pypi.python.org/pypi/nydus",
"description": "Connection clustering and routing for Redis and Python.",
"authors": ["zeeg"]
},
{
"name": "redis-mount",
"language": "Go",
"url": "https://github.com/poying/redis-mount",
"repository": "https://github.com/poying/redis-mount",
"description": "redis-mount lets you use Redis as a filesystem.",
"authors": ["poying"]
},
{
"name": "RPQueue",
"language": "Python",
"url": "https://pypi.python.org/pypi/rpqueue",
"repository": "https://github.com/josiahcarlson/rpqueue",
"description": "RPQueue offers a prioritized, periodic, and scheduled task system for Python using Redis",
"authors": ["josiahcarlson"]
},
{
"name": "rom",
"language": "Python",
"url": "https://pypi.python.org/pypi/rom",
"repository": "https://github.com/josiahcarlson/rom",
"description": "Redis object mapper for Python using declarative models, with search over numeric, full text, prefix, and suffix indexes",
"authors": ["josiahcarlson"]
},
{
"name": "RedisKeychain",
"language": "Javascript",
"url": "https://github.com/adriano-di-giovanni/node-redis-keychain",
"repository": "https://github.com/adriano-di-giovanni/node-redis-keychain",
"description": "A Node.js library for streamlining the configuration and maintenance of your Redis namespace",
"authors": ["codecreativity"]
},
{
"name": "phpRedExpert",
"language": "PHP",
"url": "https://github.com/eugef/phpRedExpert",
"repository": "https://github.com/eugef/phpRedExpert",
"description": "phpRedExpert ia simple and powerful web UI for Redis databases and servers management, written in PHP and JavaScript.",
"authors": ["EugeneFidelin"]
},
{
"name": "Hibernate OGM",
"language": "Java",
"url": "http://hibernate.org/ogm/",
"repository": "https://github.com/hibernate/hibernate-ogm",
"description": "Hibernate OGM is the JPA integration for Redis",
"authors": ["mp911de", "gunnarmorling"]
},
{
"name": "pyres",
"language": "Python",
"repository" : "https://github.com/binarydud/pyres",
"description" : "Python library inspired by Resque for creating background jobs and workers",
"authors" : ["binarydud"]
},
{
"name": "Redis-RdbParser",
"language": "Perl",
"repository": "https://github.com/flygoast/Redis-RdbParser",
"description": "Redis-RdbParser is a streaming parser for Redis RDB database dumps.",
"authors": []
},
{
"name": "Redset",
"language": "Python",
"repository": "https://github.com/percolate/redset",
"description": "Simple, generic sorted sets backed by Redis that can be used to coordinate distributed systems.",
"authors": ["percolate"]
},
{
"name": "Redsmin",
"language": "Web",
"repository": "https://github.com/Redsmin/redsmin",
"url":"https://redsmin.com/",
"description": "A fully featured Redis GUI for managing and monitoring Redis.",
"authors": ["fgribreau"]
},
{
"name": "HOT Redis",
"language": "Python",
"repository": "https://github.com/stephenmcd/hot-redis",
"description": "Higher Order Types for Redis in Python",
"authors": ["stephenmcd"]
},
{
"name": "Redis Tree",
"language": "Javascript",
"repository": "https://github.com/FGRibreau/redistree",
"description": "Load and save Trees to Redis using sets.",
"authors": ["fgribreau"]
},
{
"name": "Redis-NaiveBayes",
"language": "Perl",
"repository": "https://github.com/caio/Redis-NaiveBayes",
"description": "A generic Redis-backed NaiveBayes implementation",
"authors": ["caio"]
},
{
"name": "Agentredrabbit",
"language": "Python",
"repository": "https://github.com/wingify/agentredrabbit",
"description": "Transport agent that moves data from Redis to RabbitMQ",
"authors": ["wingify"]
},
{
"name": "Redtrine",
"language": "PHP",
"repository": "https://github.com/redtrine/redtrine",
"description": "Redis-based advanced PHP data structures",
"authors": ["redtrine"]
},
{
"name": "Redis LUA Unit",
"language": "Lua",
"repository": "https://github.com/Redsmin/redis-lua-unit",
"description": "Framework agnostic unit-testing for Redis Lua scripts",
"authors": ["redsmin"]
},
{
"name": "Redis Info",
"language": "Javascript",
"repository": "https://github.com/FGRibreau/node-redis-info",
"description": "Redis info string parser for NodeJS",
"authors": ["fgribreau"]
},
{
"name": "Redis tool",
"language": "Javascript",
"repository": "https://github.com/FGRibreau/redis-tool",
"description": "Redis-tool - Little helpers for Redis (ztrim, del-all, rename)",
"authors": ["fgribreau"]
},
{
"name": "Redis_failover",
"language": "Ruby",
"repository": "https://github.com/ryanlecompte/redis_failover",
"description": "Redis Failover is a ZooKeeper-based automatic master/slave failover solution for Ruby.",
"authors": ["ryanlecompte"]
},
{
"name": "redis-in-labview",
"language": "LabVIEW",
"repository": "https://decibel.ni.com/content/docs/DOC-36322",
"description": "LabVIEW toolkit for Redis",
"authors": ["iwac"]
},
{
"name": "RedisStudio",
"language": "C++",
"repository": "https://github.com/cinience/RedisStudio",
"description": "Redis GUI tool for windows platform.",
"authors": ["cinience"]
},
{
"name": "Keylord",
"language": "Java",
"url": "http://protonail.com/products/keylord",
"description": "Cross-platform administration and development GUI application for key-value databases like Redis, LevelDB, etc.",
"authors": ["protonail"]
},
{
"name": "redispapa",
"language": "Python",
"url": "https://github.com/no13bus/redispapa",
"repository": "https://github.com/no13bus/redispapa",
"description": "RedisPAPA is a Redis monitor which watches `INFO` by using flask, angular, socket.io",
"authors": ["no13bus"]
},
{
"name": "Hangfire",
"language": "C#",
"url": "http://hangfire.io",
"repository": "https://github.com/HangfireIO/Hangfire",
"description": "An easy way to perform fire-and-forget, delayed and recurring tasks inside ASP.NET apps",
"authors": ["odinserj"]
},
{
"name": "redis_builder",
"language": "C++",
"url": "https://github.com/zhengshuxin/acl/tree/master/app/redis_tools/redis_builder",
"repository": "https://github.com/zhengshuxin/acl/tree/master/app/redis_tools/redis_builder",
"description": "A C++ Redis tool to create and manage a Redis cluster, basing on acl Redis lib in https://github.com/zhengshuxin/acl/tree/master/lib_acl_cpp/samples/redis",
"authors": ["zhengshuxin"]
},
{
"name": "huey",
"language": "Python",
"repository": "https://github.com/coleifer/huey",
"description": "Simple multi-threaded Python task queue. Supports Redis.",
"authors": ["coleifer"]
},
{
"name": "walrus",
"language": "Python",
"repository": "https://github.com/coleifer/walrus",
"description": "A collection of lightweight utilities for working with Redis in Python. Includes ORM, autocompletion, full-text search, cache, locks, and more.",
"authors": ["coleifer"]
},
{
"name": "RedisPlatform",
"language": "C",
"url": "http://www.jacketzhong.com/?p=220",
"repository": "https://github.com/jacket-code/redisPlatform",
"description": "A rpc platform that base on Redis, You can use it to do a lot of things, it can be a game server",
"authors": ["jacketzhong"]
},
{
"name": "RedisPlugin for Phalcon",
"language": "PHP",
"repository": "https://github.com/ienaga/RedisPlugin",
"description": "RedisPlugin for Phalcon (The correspondence of MySQL sharding.)",
"authors": ["ienagatoshiyuki"]
},
{
"name": "promise-redis",
"language": "Javascript",
"repository": "https://github.com/maxbrieiev/promise-redis",
"description": "Use any promise library with node_redis.",
"authors": []
},
{
"name": "Hedis",
"language": "C",
"url": "http://hedis.io/",
"repository": "https://github.com/hedisdb/hedis",
"description": "Hedis can retrieve data from **ANY** database directly via Redis",
"authors": ["kewang"]
},
{
"name": "Redis plugin for ZeroBrane Studio Lua IDE",
"language": "Lua",
"repository": "https://github.com/pkulchenko/ZeroBranePackage",
"description": "Enables support for the Redis Lua API, provides remote script execution and debugging",
"authors": ["zerobrane"]
},
{
"name": "Rol",
"language": "C#",
"repository": "https://github.com/jasonpunyon/rol",
"description": "A library that makes storing and working with data in redis as easy as declaring an interface.",
"authors": ["jasonpunyon"]
},
{
"name": "Redis Explorer",
"language": "C#",
"repository": "https://github.com/leegould/RedisExplorer",
"description": "Windows desktop GUI client",
"authors": ["leegould"]
},
{
"name": "rdb-parser",
"language": "Java",
"repository": "https://github.com/jwhitbeck/java-rdb-parser",
"description": "A simple Redis RDB file parser for Java",
"authors": []
},
{
"name": "cheprasov/php-redis-lock",
"language": "PHP",
"repository": "https://github.com/cheprasov/php-redis-lock",
"description": "RedisLock for PHP is a synchronization mechanism for enforcing limits on access to a resource in an environment where there are many threads of execution. A lock is designed to enforce a mutual exclusion concurrency control policy.",
"authors": ["cheprasov84"]
},
{
"name": "redis-migrate-tool",
"language": "C",
"repository": "https://github.com/vipshop/redis-migrate-tool",
"description": "A convenient and useful tool for migrating data between redis groups.",
"authors": ["diguo58"]
}
]