• Stars
    star
    115
  • Rank 305,916 (Top 7 %)
  • Language
    CoffeeScript
  • Created over 13 years ago
  • Updated about 13 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

LOcal Dictionary Server

Lodis

-----------------------------------------------------------------------
|_____________________________________________________________________X
| <  |  >  | x  |_____________________________________________________|
-----------------------------------------------------------------------
|                    _._                                              |
|               _.-``__ ''-._                                         |
|          _.-``    `.  `_.  ''-._                                    |
|      .-`` .-```.  ```\\/    _.,_ ''-._                              |
|     (    '      ,       .-`  | `,    )                              |
|     |`-._`-...-` __...-.``-._|'` _.-'|       Lodis 0.1              |
|     |    `-._   `._    /     _.-'    |                              |
|      `-._    `-._  `-./  _.-'    _.-'        like Redis             |
|     |`-._`-._    `-.__.-'    _.-'_.-'|       but in a browser       |
|     |    `-._`-._        _.-'_.-'    |                              |
|      `-._    `-._`-.__.-'_.-'    _.-'                               |
|     |`-._`-._    `-.__.-'    _.-'_.-'|                              |
|     |    `-._`-._        _.-'_.-'    |                              |
|      `-._    `-._`-.__.-'_.-'    _.-'                               |
|          `-._    `-.__.-'    _.-'                                   |
|              `-._        _.-'        github.com/elcuervo/lodis      |
|                  `-.__.-'                                           |
|---------------------------------------------------------------------|
-----------------------------------------------------------------------

Compatibility

Redis 2.4

Supported commands

  • SET โœ“
  • GET โœ“
  • DEL โœ“
  • EXISTS โœ“
  • EXPIRE โœ“
  • DBSIZE โœ“
  • EXPIREAT โœ“
  • KEYS โœ“
  • APPEND key, value โœ“
  • AUTH password โœ“
  • BGREWRITEAOF โœ“
  • BGSAVE โœ“
  • BLPOP key [key ...] timeout
  • BRPOP key [key ...] timeout
  • BRPOPLPUSH source destination timeout
  • CONFIG GET parameter
  • CONFIG SET parameter value
  • CONFIG RESETSTAT
  • DEBUG OBJECT key
  • DEBUG SEGFAULT
  • DECR key โœ“
  • DECRBY key decrement โœ“
  • DISCARD
  • ECHO message โœ“
  • EXEC
  • FLUSHALL โœ“
  • FLUSHDB โœ“
  • GETBIT key offset
  • GETRANGE key start end โœ“
  • GETSET key value โœ“
  • HDEL key field [field ...] โœ“
  • HEXISTS key field โœ“
  • HGET key field โœ“
  • HGETALL key โœ“
  • HINCRBY key field increment โœ“
  • HKEYS key โœ“
  • HLEN key โœ“
  • HMGET key field [field ...] โœ“
  • HMSET key field value [field value ...] โœ“
  • HSET key field value โœ“
  • HSETNX key field value โœ“
  • HVALS key โœ“
  • INCR key โœ“
  • INCRBY key increment โœ“
  • INFO
  • LASTSAVE
  • LINDEX key index โœ“
  • LINSERT key BEFORE|AFTER pivot value โœ“
  • LLEN key โœ“
  • LPOP key โœ“
  • LPUSH key value [value ...] โœ“
  • LPUSHX key value โœ“
  • LRANGE key start stop โœ“
  • LREM key count value โœ“
  • LSET key index value โœ“
  • LTRIM key start stop โœ“
  • MGET key [key ...] โœ“
  • MONITOR
  • MOVE key db
  • MSET key value [key value ...] โœ“
  • MSETNX key value [key value ...] โœ“
  • MULTI
  • OBJECT subcommand [arguments [arguments ...]]
  • PERSIST key โœ“
  • PING โœ“
  • PSUBSCRIBE pattern [pattern ...]
  • PUBLISH channel message
  • PUNSUBSCRIBE [pattern [pattern ...]]
  • QUIT
  • RANDOMKEY โœ“
  • RENAME key newkey โœ“
  • RENAMENX key newkey โœ“
  • RPOP key โœ“
  • RPOPLPUSH source destination โœ“
  • RPUSH key value [value ...] โœ“
  • RPUSHX key value โœ“
  • SADD key member [member ...] โœ“
  • SAVE โœ“
  • SCARD key โœ“
  • SDIFF key [key ...] โœ“
  • SDIFFSTORE destination key [key ...] โœ“
  • SELECT index โœ“
  • SETBIT key offset value
  • SETEX key seconds value โœ“
  • SETNX key value โœ“
  • SETRANGE key offset value โœ“
  • SHUTDOWN โœ“
  • SINTER key [key ...] โœ“
  • SINTERSTORE destination key [key ...] โœ“
  • SISMEMBER key member โœ“
  • SLAVEOF host port
  • SLOWLOG subcommand [argument]
  • SMEMBERS key โœ“
  • SMOVE source destination member โœ“
  • SORT key [BY pattern] [LIMIT offset count] [GET pattern [GET pattern ...]] [ASC|DESC] [ALPHA] [STORE destination]
  • SPOP key โœ“
  • SRANDMEMBER key โœ“
  • SREM key member [member ...] โœ“
  • STRLEN key โœ“
  • SUBSCRIBE channel [channel ...]
  • SUNION key [key ...]
  • SUNIONSTORE destination key [key ...]
  • SYNC
  • TYPE key โœ“
  • UNSUBSCRIBE [channel [channel ...]]
  • UNWATCH
  • WATCH key [key ...]
  • ZADD key score member
  • ZCARD key
  • ZCOUNT key min max
  • ZINCRBY key increment member
  • ZINTERSTORE destination numkeys key [key ...] [WEIGHTS weight [weight ...]] [AGGREGATE SUM|MIN|MAX]
  • ZRANGE key start stop [WITHSCORES]
  • ZRANGEBYSCORE key min max [WITHSCORES] [LIMIT offset count]
  • ZRANK key member
  • ZREM key member
  • ZREMRANGEBYRANK key start stop
  • ZREMRANGEBYSCORE key min max
  • ZREVRANGE key start stop [WITHSCORES]
  • ZREVRANGEBYSCORE key max min [WITHSCORES] [LIMIT offset count]
  • ZREVRANK key member
  • ZSCORE key member
  • ZUNIONSTORE destination numkeys key [key ...] [WEIGHTS weight [weight ...]] [AGGREGATE SUM|MIN|MAX]

TODO

  • Store expirations within Lodis itself to avoid expiration dates on reload
  • Should handle types in a different way? custom types to match Redis?
  • Sync with Redis via HTTP?

More Repositories

1

airplay

Airplay bindings to Ruby
Ruby
1,071
star
2

minuteman

Fast analytics using Redis
Ruby
629
star
3

tangalanga

Tangalanga: the Zoom conference scanner hacking tool
Go
285
star
4

vcr.js

VCR for javascript
JavaScript
152
star
5

minuteman-rails

Use Minuteman easily in your Rails app
Ruby
64
star
6

gerbil

Gerbil: Inquisitive, friendly animals that rarely bite, TDD for the rest of us
JavaScript
59
star
7

minimalweather

Minimal Weather
JavaScript
30
star
8

cuba-sugar

Give cuba some sugar!
Ruby
20
star
9

shibe

The microframework for Doges
Ruby
15
star
10

dashcat

DashCat - The GitHub viewer
Objective-C
12
star
11

random-octocat

Get a random octocat app
Ruby
12
star
12

picomachine

PicoMachine: minimal finite state machine
JavaScript
11
star
13

flag

Simple feature flags
Ruby
11
star
14

smoking

Simple Mocking and Stubbing for javascript
JavaScript
10
star
15

net-http-pool

Persistent HTTP connection pool
Ruby
9
star
16

shoden

The elephant god
Ruby
8
star
17

minimail

The minimal desktop mail client
JavaScript
7
star
18

nginx_http_redis

Mirror from wiki.nginx.org
C
7
star
19

pythomnic3k

Mirror from sourceforge
Python
7
star
20

net-ptth

Reverse HTTP ruby client
Ruby
7
star
21

phonetap

PhoneTap: give all the PhoneTap js methods to do some testing or develop outside the simulator
CoffeeScript
6
star
22

whereisfoca.com

HTML
6
star
23

backbone-atlas

Backbone compatible json to models converter
JavaScript
5
star
24

coworking-law

5
star
25

limelight_video

Limelight video platform ruby client
Ruby
5
star
26

firma

Adds a secure signature to pdf
Ruby
5
star
27

rpm

Shell
4
star
28

GenUy

Proyecto de bรบsqueda de personas uruguayas
4
star
29

hugware.org

Less hate, more hugs
JavaScript
3
star
30

proof_of_work

A Hashcash algorithm implementation
Ruby
3
star
31

timelapsy

JavaScript
3
star
32

elcuervo.co

Home Page
CSS
3
star
33

cachoo

Ruby
2
star
34

AMD-Backbone-Gerbil-JSDom

Full integration example
JavaScript
2
star
35

hubot-consul-brain

JavaScript
2
star
36

net-http-auth-hmac

Signs Net::HTTP requests
Ruby
2
star
37

macos

Nix
2
star
38

spikefish

Go
2
star
39

twitcher

Twitcher. The ticker with update
Go
2
star
40

wire

HTML5 workers without a separate file
JavaScript
2
star
41

dry-types-json-schema

Ruby
2
star
42

gadget

DNS Docker inspector
Go
2
star
43

geocoder

Go
1
star
44

internationalrubyband.com

1
star
45

pydayuy2011

slides del python day uy 2011
1
star
46

dotfiles-old

Vim Script
1
star
47

spirit

Ruby
1
star
48

cisco_decrypt

Decrypt cisco encrypted passwords
C
1
star
49

dash.cat

The DashCat website
Ruby
1
star
50

dockerfiles

Makefile
1
star
51

machina

Ruby
1
star
52

rubyconfar-2011

JavaScript
1
star
53

phreak

PhoneGap wrapper
JavaScript
1
star
54

ph

Ruby
1
star
55

nixos

Nix
1
star
56

dashcat-test-repo

1
star
57

bankrupt

Ruby
1
star
58

gpm-link

gpm link plugin
Shell
1
star
59

ohm-find_by

find_by to Ohm::Model
Ruby
1
star
60

mobility_bug

Ruby
1
star
61

rest_ejabberd

Ruby interface for ejabberd's mod_restful
Ruby
1
star
62

pythomnic3k-sample-webserver

Python
1
star