forked from redis/redis-doc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
clients.json
1868 lines (1670 loc) · 53.4 KB
/
clients.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
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"name": "redis-rb",
"language": "Ruby",
"repository": "https://github.com/redis/redis-rb",
"description": "Very stable and mature client. Install and require the hiredis gem before redis-rb for maximum performance.",
"authors": ["ezmobius", "soveran", "djanowski", "pnoordhuis"],
"recommended": true,
"active": true
},
{
"name": "carmine",
"language": "Clojure",
"repository": "https://github.com/ptaoussanis/carmine",
"description": "Simple, high-performance Redis (2.0+) client for Clojure.",
"authors": ["ptaoussanis"],
"recommended": true,
"active": true
},
{
"name": "CL-Redis",
"language": "Common Lisp",
"url": "http://www.cliki.net/cl-redis",
"repository": "https://github.com/vseloved/cl-redis",
"description": "",
"authors": ["BigThingist"],
"active": true
},
{
"name": "Erldis",
"language": "Erlang",
"repository": "https://github.com/japerk/erldis",
"description": "A Redis erlang client library.",
"authors": ["dialtone_","japerk"]
},
{
"name": "Eredis",
"language": "Erlang",
"repository": "https://github.com/wooga/eredis",
"description": "Redis client with a focus on performance",
"authors": ["wooga"],
"recommended": true,
"active": true
},
{
"name": "eredis_cluster",
"language": "Erlang",
"repository": "https://github.com/adrienmo/eredis_cluster",
"description": "Eredis wrapper providing cluster support and connection pooling",
"authors": ["adrienmo"],
"active": true
},
{
"name": "sharded_eredis",
"language": "Erlang",
"repository": "https://github.com/jeremyong/sharded_eredis",
"description": "Wrapper around eredis providing process pools and consistent hashing.",
"authors": ["jeremyong"]
},
{
"name": "Tideland Erlang/OTP Redis Client",
"language": "Erlang",
"repository": "git://git.tideland.biz/errc",
"description": "A comfortable Redis client for Erlang/OTP support pooling, pub/sub and transactions.",
"authors": ["themue"]
},
{
"name": "exredis",
"language": "Elixir",
"repository": "https://github.com/artemeff/exredis",
"description": "Redis client for Elixir.",
"authors": ["artemeff"],
"active": true
},
{
"name": "redis.fy",
"language": "Fancy",
"repository": "https://github.com/bakkdoor/redis.fy",
"description": "A Fancy Redis client library",
"authors": ["bakkdoor"]
},
{
"name": "go-redis/redis",
"language": "Go",
"repository": "https://github.com/go-redis/redis",
"description": "Redis client for Golang supporting Redis Sentinel and Redis Cluster out of the box.",
"authors": [],
"active": true
},
{
"name": "Go-Redis",
"language": "Go",
"repository": "https://github.com/alphazero/Go-Redis",
"description": "Google Go Client and Connectors for Redis.",
"authors": ["SunOf27"]
},
{
"name": "Radix",
"language": "Go",
"repository": "https://github.com/mediocregopher/radix",
"description": "MIT licensed Redis client which supports pipelining, pooling, redis cluster, scripting, pub/sub, scanning, and more.",
"authors": ["fzzbt", "mediocre_gopher"],
"recommended": true,
"active": true
},
{
"name": "Redigo",
"language": "Go",
"repository": "https://github.com/gomodule/redigo",
"description": "Redigo is a Go client for the Redis database with support for Print-alike API, Pipelining (including transactions), Pub/Sub, Connection pooling, scripting.",
"authors": ["gburd"],
"recommended": true,
"active": true
},
{
"name": "RedisPipe",
"language": "Go",
"repository": "https://github.com/joomcode/redispipe",
"description": "RedisPipe is the high-throughput Go client with implicit pipelining and robust Cluster support.",
"authors": ["funny_falcon"],
"active": true
},
{
"name": "Tideland Go Redis Client",
"language": "Go",
"url": "https://github.com/tideland/golib/tree/master/redis",
"repository": "https://github.com/tideland/golib",
"description": "A flexible Go Redis client able to handle all commands",
"authors": ["themue"],
"active": true
},
{
"name": "godis",
"language": "Go",
"repository": "https://github.com/simonz05/godis",
"description": "A Redis client for Go.",
"authors": []
},
{
"name": "gosexy/redis",
"language": "Go",
"repository": "https://github.com/gosexy/redis",
"url": "https://menteslibres.net/gosexy/redis",
"description": "Redis client library for Go that maps the full redis command list into equivalent Go functions.",
"authors": ["xiam"],
"active": true
},
{
"name": "goredis",
"language": "Go",
"repository": "https://github.com/xuyu/goredis",
"description": "A redis client for golang with full features",
"authors": ["xuyu"]
},
{
"name": "gore",
"language": "Go",
"repository": "https://github.com/keimoon/gore",
"description": "A full feature redis Client for Go. Supports Pipeline, Transaction, LUA scripting, Pubsub, Connection Pool, Sentinel and client sharding",
"authors": ["keimoon"],
"active": true
},
{
"name": "Redis",
"language": "Go",
"repository": "https://github.com/pascaldekloe/redis",
"description": "clean, fully asynchronous, high-performance, low-memory",
"authors": [],
"active": true
},
{
"name": "shipwire/redis",
"language": "Go",
"repository": "https://github.com/shipwire/redis",
"description": "A Redis client focused on streaming, with support for a print-like API, pipelining, Pub/Sub, and connection pooling.",
"authors": ["stephensearles"]
},
{
"name": "go-resp3",
"language": "Go",
"repository": "https://github.com/stfnmllr/go-resp3",
"description": "A Redis Go client implementation based on the Redis RESP3 protocol.",
"authors": [],
"active": true
},
{
"name": "hedis",
"language": "Haskell",
"url": "http://hackage.haskell.org/package/hedis",
"repository": "https://github.com/informatikr/hedis",
"description": "Supports the complete command set. Commands are automatically pipelined for high performance.",
"authors": [],
"recommended": true,
"active": true
},
{
"name": "haskell-redis",
"language": "Haskell",
"url": "https://bitbucket.org/videlalvaro/redis-haskell/wiki/Home",
"repository": "https://bitbucket.org/videlalvaro/redis-haskell/src",
"description": "Not actively maintained, supports Redis <= 2.0.",
"authors": ["old_sound"]
},
{
"name": "Jedis",
"language": "Java",
"repository": "https://github.com/xetorthio/jedis",
"description": "A blazingly small and sane redis java client",
"authors": ["xetorthio"],
"recommended": true,
"active": true
},
{
"name": "java-redis-client",
"language": "Java",
"repository": "https://github.com/drm/java-redis-client",
"description": "A very simple yet very complete java client in less than 200 lines with 0 dependencies.",
"authors": [],
"active": true
},
{
"name": "Jedipus",
"language": "Java",
"repository": "https://github.com/jamespedwards42/jedipus",
"description": "Redis Client & Command Executor.",
"authors": ["jamespedwards"],
"active": true
},
{
"name": "Redisson",
"language": "Java",
"repository": "https://github.com/mrniko/redisson",
"description": "distributed and scalable Java data structures on top of Redis server",
"authors": ["mrniko"],
"recommended": true,
"active": true
},
{
"name": "JRedis",
"language": "Java",
"url": "https://code.google.com/p/jredis/",
"repository": "https://github.com/alphazero/jredis",
"description": "",
"authors": ["SunOf27"],
"active": true
},
{
"name": "JDBC-Redis",
"language": "Java",
"url": "https://code.google.com/p/jdbc-redis/",
"repository": "https://code.google.com/p/jdbc-redis/source/browse",
"description": "",
"authors": ["mavcunha"]
},
{
"name": "RJC",
"language": "Java",
"repository": "https://github.com/e-mzungu/rjc",
"description": "",
"authors": ["e_mzungu"]
},
{
"name": "redis-protocol",
"language": "Java",
"repository": "https://github.com/spullara/redis-protocol",
"description": "Up to 2.6 compatible high-performance Java, Java w/Netty & Scala (finagle) client",
"authors": ["spullara"]
},
{
"name": "aredis",
"language": "Java",
"repository": "http://aredis.sourceforge.net/",
"description": "Asynchronous, pipelined client based on the Java 7 NIO Channel API",
"authors": []
},
{
"name": "vertx-redis-client",
"language": "Java",
"repository": "https://github.com/vert-x3/vertx-redis-client",
"description": "The Vert.x Redis client provides an asynchronous API to interact with a Redis data-structure server.",
"authors": ["pmlopes"]
},
{
"name": "redis-lua",
"language": "Lua",
"repository": "https://github.com/nrk/redis-lua",
"description": "",
"authors": ["JoL1hAHN"],
"recommended": true
},
{
"name": "lua-hiredis",
"language": "Lua",
"repository": "https://github.com/agladysh/lua-hiredis",
"description": "Lua bindings for the hiredis library",
"authors": ["agladysh"]
},
{
"name": "lredis",
"language": "Lua",
"repository": "https://github.com/daurnimator/lredis",
"description": "Redis library for Lua",
"authors": ["daurnimator"],
"active": true
},
{
"name": "Redis",
"language": "Perl",
"url": "http://search.cpan.org/dist/Redis/",
"repository": "https://github.com/PerlRedis/perl-redis",
"description": "Perl binding for Redis database",
"authors": ["damsieboy"],
"recommended": true,
"active": true
},
{
"name": "RedisDB",
"language": "Perl",
"url": "http://search.cpan.org/dist/RedisDB/",
"repository": "https://github.com/trinitum/RedisDB",
"description": "Perl binding for Redis database with fast XS-based protocolparser",
"authors": ["trinitum"],
"active": true
},
{
"name": "Redis::hiredis",
"language": "Perl",
"url": "http://search.cpan.org/dist/Redis-hiredis/",
"description": "Perl binding for the hiredis C client",
"authors": ["neophenix"]
},
{
"name": "AnyEvent::Redis",
"language": "Perl",
"url": "http://search.cpan.org/dist/AnyEvent-Redis/",
"repository": "https://github.com/miyagawa/AnyEvent-Redis",
"description": "Non-blocking Redis client",
"authors": ["miyagawa"]
},
{
"name": "AnyEvent::RipeRedis",
"language": "Perl",
"url": "http://search.cpan.org/dist/AnyEvent-RipeRedis/",
"repository": "https://github.com/iph0/AnyEvent-RipeRedis",
"description": "Flexible non-blocking Redis client",
"authors": ["iph0"],
"active": true
},
{
"name": "AnyEvent::RipeRedis::Cluster",
"language": "Perl",
"url": "http://search.cpan.org/dist/AnyEvent-RipeRedis-Cluster/",
"repository": "https://github.com/iph0/AnyEvent-RipeRedis-Cluster",
"description": "Non-blocking Redis Cluster client",
"authors": ["iph0"],
"active": true
},
{
"name": "Redis::ClusterRider",
"language": "Perl",
"url": "http://search.cpan.org/dist/Redis-ClusterRider/",
"repository": " https://github.com/iph0/Redis-ClusterRider",
"description": "Daring Redis Cluster client",
"authors": ["iph0"],
"active": true
},
{
"name": "AnyEvent::Hiredis",
"language": "Perl",
"url": "http://search.cpan.org/dist/AnyEvent-Hiredis/",
"repository": "https://github.com/wjackson/AnyEvent-Hiredis",
"description": "Non-blocking client using the hiredis C library",
"authors": []
},
{
"name": "Mojo::Redis",
"language": "Perl",
"url": "http://search.cpan.org/dist/Mojo-Redis/",
"repository": "https://github.com/marcusramberg/mojo-redis",
"description": "asynchronous Redis client for Mojolicious",
"authors": ["und3f", "marcusramberg", "jhthorsen"]
},
{
"name": "Danga::Socket::Redis",
"language": "Perl",
"url": "http://search.cpan.org/dist/Danga-Socket-Redis/",
"description": "An asynchronous redis client using the Danga::Socket async library",
"authors": ["martinredmond"]
},
{
"name": "Predis",
"language": "PHP",
"repository": "https://github.com/nrk/predis",
"description": "Mature and supported",
"authors": ["JoL1hAHN"],
"recommended": true
},
{
"name": "phpredis",
"language": "PHP",
"repository": "https://github.com/phpredis/phpredis",
"description": "This is a client written in C as a PHP module.",
"authors": ["grumi78", "yowgi", "yatsukhnenko"],
"recommended": true,
"active": true
},
{
"name": "Rediska",
"language": "PHP",
"url": "http://rediska.geometria-lab.net",
"repository": "https://github.com/Shumkov/Rediska",
"description": "",
"authors": ["shumkov"],
"active": false
},
{
"name": "Redisent",
"language": "PHP",
"repository": "https://github.com/jdp/redisent",
"description": "",
"authors": ["justinpoliey"],
"active": false
},
{
"name": "Credis",
"language": "PHP",
"repository": "https://github.com/colinmollenhour/credis",
"description": "Lightweight, standalone, unit-tested fork of Redisent which wraps phpredis for best performance if available.",
"authors": ["colinmollenhour"],
"active": true
},
{
"name": "PHP Sentinel Client",
"language": "PHP",
"repository": "https://github.com/jamescauwelier/PSRedis",
"description": "A PHP sentinel client acting as an extension to your regular redis client",
"authors": ["jamescauwelier"],
"active": true
},
{
"name": "redis-async",
"language": "PHP",
"repository": "https://github.com/swoole/redis-async",
"description": "Asynchronous redis client library for PHP.",
"authors": ["matyhtf"],
"active": false
},
{
"name": "Yampee Redis",
"language": "PHP",
"repository": "https://github.com/yampee/Redis",
"description": "A full-featured Redis client for PHP 5.2. Easy to use and to extend.",
"authors": ["tgalopin"],
"active": false
},
{
"name": "redis-py",
"language": "Python",
"repository": "https://github.com/andymccurdy/redis-py",
"description": "Mature and supported. Currently the way to go for Python.",
"authors": ["andymccurdy"],
"recommended": true,
"active": true
},
{
"name": "gxredis",
"language": "Python",
"repository": "https://github.com/groove-x/gxredis",
"description": "Simple redis-py wrapper library",
"authors": ["loose_agilist"],
"active": true
},
{
"name": "txredis",
"language": "Python",
"url": "https://pypi.python.org/pypi/txredis",
"description": "",
"authors": ["dio_rian"]
},
{
"name": "txredisapi",
"language": "Python",
"url": "https://github.com/fiorix/txredisapi",
"description": "Full featured, non-blocking client for Twisted.",
"authors": ["fiorix"],
"active": true
},
{
"name": "desir",
"language": "Python",
"repository": "https://github.com/aallamaa/desir",
"description": "",
"authors": ["aallamaa"]
},
{
"name": "tornadis",
"language": "Python",
"repository": "https://github.com/thefab/tornadis",
"url": "http://tornadis.readthedocs.org",
"description": "Async minimal redis client for tornado ioloop designed for performances (use C hiredis parser)",
"active": true
},
{
"name": "brukva",
"language": "Python",
"repository": "https://github.com/evilkost/brukva",
"description": "Asynchronous Redis client that works within Tornado IO loop",
"authors": ["evilkost"]
},
{
"name": "aioredis",
"language": "Python",
"repository": "https://github.com/aio-libs/aioredis",
"url": "http://aioredis.readthedocs.org/",
"description": "Asyncio (PEP 3156) Redis client",
"authors": [],
"active": true
},
{
"name": "prot-redis",
"language": "Rebol",
"repository": "https://github.com/rebolek/prot-redis",
"description": "Redis network scheme for Rebol 3",
"authors": ["rebolek"]
},
{
"name": "redisca2",
"language": "Python",
"repository": "https://github.com/khamin/redisca2",
"description": "Lightweight ORM for Redis",
"authors": ["vitaliykhamin"]
},
{
"name": "monix-connect",
"language": "Scala",
"url": "https://monix.github.io/monix-connect/docs/redis",
"repository": "https://github.com/monix/monix-connect",
"description": "Monix integration with Redis",
"authors": ["paualarco"],
"active": true
},
{
"name": "laserdisc",
"language": "Scala",
"repository": "https://github.com/laserdisc-io/laserdisc",
"description": "Future free Fs2 native pure FP Redis client http://laserdisc.io",
"authors": ["JSirocchi", "barambani"],
"active": true
},
{
"name": "Redis4Cats",
"language": "Scala",
"url": "https://redis4cats.profunktor.dev/",
"repository": "https://github.com/profunktor/redis4cats",
"description": "Purely functional Redis client for Cats Effect & Fs2",
"authors": ["volpegabriel87"],
"active": true
},
{
"name": "scala-redis",
"language": "Scala",
"repository": "https://github.com/acrosa/scala-redis",
"description": "",
"authors": ["alejandrocrosa"]
},
{
"name": "scala-redis",
"language": "Scala",
"repository": "https://github.com/yarosman/redis-client-scala-netty",
"description": "Non-blocking, netty 4.1.x based Scala Redis client",
"authors": []
},
{
"name": "scala-redis",
"language": "Scala",
"repository": "https://github.com/debasishg/scala-redis",
"description": "Apparently a fork of the original client from @alejandrocrosa",
"authors": ["debasishg"],
"recommended": true,
"active": true
},
{
"name": "redis-client-scala-netty",
"language": "Scala",
"repository": "https://github.com/andreyk0/redis-client-scala-netty",
"description": "",
"authors": []
},
{
"name": "sedis",
"language": "Scala",
"repository": "https://github.com/pk11/sedis",
"description": "a thin scala wrapper for the popular Redis Java client, Jedis",
"authors": ["pk11"]
},
{
"name": "scredis",
"language": "Scala",
"repository": "https://github.com/scredis/scredis",
"description": "Non-blocking, ultra-fast Scala Redis client built on top of Akka IO, used in production at Livestream",
"authors": ["livestream"],
"active": true
},
{
"name": "rediscala",
"language": "Scala",
"repository": "https://github.com/etaty/rediscala",
"description": "A Redis client for Scala (2.10+) and (AKKA 2.2+) with non-blocking and asynchronous I/O operations.",
"authors": ["etaty"],
"active": true
},
{
"name": "Tcl Client",
"language": "Tcl",
"repository": "https://github.com/redis/redis/blob/unstable/tests/support/redis.tcl",
"description": "The client used in the Redis test suite. Not really full featured nor designed to be used in the real world.",
"authors": ["antirez"]
},
{
"name": "Retcl",
"language": "Tcl",
"repository": "https://github.com/gahr/retcl",
"description": "Retcl is an asynchronous, event-driven Redis client library implemented as a single-file Tcl module.",
"authors": ["gahrgahr"]
},
{
"name": "ServiceStack.Redis",
"language": "C#",
"url": "https://github.com/ServiceStack/ServiceStack.Redis",
"description": "This is a fork and improvement of the original C# client written by Miguel De Icaza.",
"authors": ["demisbellot"],
"recommended": true,
"active": true
},
{
"name": "StackExchange.Redis",
"language": "C#",
"url": "https://github.com/StackExchange/StackExchange.Redis",
"description": "This .NET client was developed by Stack Exchange for very high performance needs (replacement to the earlier BookSleeve).",
"authors": ["marcgravell"],
"recommended": true,
"active": true
},
{
"name": "Sider",
"language": "C#",
"url": "http://www.nuget.org/packages/Sider",
"description": "Minimalistic client for C#/.NET 4.0",
"authors": ["chakrit"]
},
{
"name": "Rediska",
"language": "C#",
"url": "https://github.com/pepelev/Rediska",
"description": "Rediska is a Redis client for .NET with a focus on flexibility and extensibility.",
"authors": [],
"recommended": false,
"active": true
},
{
"name": "DartRedisClient",
"language": "Dart",
"url": "https://github.com/dartist/redis_client",
"description": "A high-performance async/non-blocking Redis client for Dart",
"authors": ["demisbellot"],
"recommended": true,
"active": true
},
{
"name": "hxneko-redis",
"language": "Haxe",
"url": "https://code.google.com/p/hxneko-redis/",
"repository": "https://code.google.com/p/hxneko-redis/source/browse",
"description": "",
"authors": []
},
{
"name": "em-hiredis",
"language": "Ruby",
"repository": "https://github.com/mloughran/em-hiredis",
"description": "An EventMachine Redis client (uses hiredis).",
"authors": ["mloughran"]
},
{
"name": "em-redis",
"language": "Ruby",
"repository": "https://github.com/madsimian/em-redis",
"description": "An eventmachine-based implementation of the Redis protocol. No longer actively maintained.",
"authors": ["madsimian"]
},
{
"name": "hiredis",
"language": "C",
"repository": "https://github.com/redis/hiredis",
"description": "This is the official C client. Support for the whole command set, pipelining, event driven programming.",
"authors": ["antirez","pnoordhuis","badboy_"],
"recommended": true,
"active": true
},
{
"name": "credis",
"language": "C",
"repository": "https://code.google.com/p/credis/source/browse",
"description": "",
"authors": [],
"active": true
},
{
"name": "xredis",
"language": "Node.js",
"repository": "https://github.com/razaellahi/xredis",
"description": "Redis client with redis ACL features",
"authors": ["razaellahi531"],
"recommended": true,
"active": true
},
{
"name": "node_redis",
"language": "Node.js",
"repository": "https://github.com/NodeRedis/node_redis",
"description": "Recommended client for node.",
"authors": ["mranney"],
"recommended": true,
"active": true
},
{
"name": "thunk-redis",
"language": "Node.js",
"repository": "https://github.com/thunks/thunk-redis",
"description": "A thunk/promise-based redis client with pipelining and cluster.",
"authors": ["izensh"],
"active": true
},
{
"name": "spade",
"language": "Node.js",
"repository": "https://github.com/rootslab/spade",
"description": "♠ Spade, a full-featured modular client for node.",
"authors": ["44gtti"],
"recommended": false,
"active": true
},
{
"name": "then-redis",
"language": "Node.js",
"repository": "https://github.com/mjackson/then-redis",
"description": "A small, promise-based Redis client for node",
"authors": ["mjackson"],
"active": true
},
{
"name": "redis-node-client",
"language": "Node.js",
"repository": "https://github.com/fictorial/redis-node-client",
"description": "No longer maintained, does not work with node 0.3.",
"authors": []
},
{
"name": "ioredis",
"language": "Node.js",
"repository": "https://github.com/luin/ioredis",
"description": "A delightful, performance-focused and full-featured Redis client. Supports Cluster, Sentinel, Pipelining and Lua Scripting",
"authors": ["luinlee"],
"recommended": true,
"active": true
},
{
"name": "tedis",
"language": "Node.js",
"repository": "https://github.com/silkjs/tedis",
"url": "https://tedis.silkjs.org",
"description": "Tedis is a redis client developed for Node.js . Its name was inspired by the Jedis and TypeScript.",
"authors": ["dasoncheng"],
"recommended": true,
"active": true
},
{
"name": "redis-fast-driver",
"language": "Node.js",
"repository": "https://github.com/h0x91b/redis-fast-driver",
"description": "Driver based on hiredis async lib, can do PUBSUB and MONITOR, simple and really fast, written with NaN so works fine with node >=0.8",
"authors": ["h0x91b"],
"active": true
},
{
"name": "fast-redis-cluster",
"language": "Node.js",
"repository": "https://github.com/h0x91b/fast-redis-cluster",
"description": "Simple and fast cluster driver with error handling, uses redis-fast-driver as main adapter and node_redis as backup for windows",
"authors": ["h0x91b"],
"active": true
},
{
"name": "iodis",
"language": "Io",
"repository": "https://github.com/vangberg/iodis",
"description": "",
"authors": ["ichverstehe"]
},
{
"name": "redis.go",
"language": "Go",
"repository": "https://github.com/hoisie/redis",
"description": "",
"authors": ["hoisie"]
},
{
"name": "Smalltalk Redis Client",
"language": "Smalltalk",
"repository": "http://www.squeaksource.com/Redis.html",
"description": "",
"authors": []
},
{
"name": "TeamDev Redis Client",
"language": "C#",
"repository": "http://redis.codeplex.com/",
"description": "Redis Client is based on redis-sharp for the basic communication functions, but it offers some differences.",
"authors": ["TeamDevPerugia"]
},
{
"name": "redis-sharp",
"language": "C#",
"repository": "https://github.com/migueldeicaza/redis-sharp",
"description": "",
"authors": ["migueldeicaza"]
},
{
"name": "ObjCHiredis",
"language": "Objective-C",
"repository": "https://github.com/lp/ObjCHiredis",
"description": "Static Library for iOS4 device and Simulator, plus Objective-C Framework for MacOS 10.5 and higher",
"authors": ["loopole"]
},
{
"name": "Puredis",
"language": "Pure Data",
"repository": "https://github.com/lp/puredis",
"description": "Pure Data Redis sync, async and subscriber client",
"authors": ["loopole"]
},
{
"name": "async-redis",
"language": "C++",
"url": "https://github.com/hamidr/async-redis",
"repository": "https://github.com/hamidr/async-redis",
"description": "An async redis library for C++ based on libevpp/boost-asio",
"authors": ["hamidr_"],
"active": true
},
{
"name": "acl-redis",
"language": "C++",
"url": "https://github.com/acl-dev/acl/tree/master/lib_acl_cpp/samples/redis",
"repository": "https://github.com/acl-dev/acl/tree/master/lib_acl_cpp/include/acl_cpp/redis",
"description": "Standard C++ Redis Client with high performance and stl-like interface, supporting Redis Cluster, thread safety",
"authors": ["zhengshuxin"],
"active": true
},
{
"name": "redox",
"language": "C++",
"repository": "https://github.com/hmartiro/redox",
"description": "Modern, asynchronous, and fast C++11 client for Redis",
"authors": ["hmartiros"],
"active": true
},
{
"name": "redis3m",
"language": "C++",
"repository": "https://github.com/luca3m/redis3m",
"description": "A C++ wrapper of hiredis, with also connection pooling, high availability and ready-to-use patterns",
"authors": [ "luca3m" ],
"active": true
},
{
"name": "C++ Client",
"language": "C++",
"repository": "https://github.com/mrpi/redis-cplusplus-client",
"authors": []
},
{
"name": "aedis",
"language": "C++",
"repository": "https://github.com/mzimbres/aedis",
"description": "An async redis client designed for simplicity and reliability.",
"authors": ["mzimbres"],
"active": true
},
{
"name": "libredis",
"language": "C",
"repository": "https://github.com/toymachine/libredis",
"description": "Support for executing commands on multiple servers in parallel via poll(2), ketama hashing. Includes PHP bindings.",
"authors": []
},