nrk (owner)

Revisions

gist: 177573 Download_button fork
public
Description:
Testing redis-lua with Telescope
Public Clone URL: git://gist.github.com/177573.git
Embed All Files: show embed
Text only #
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
adaniele@plutonium:~/development/redis-lua$ tsc -f client_spec.lua
------------------------------------------------------------------------
Redis client:
Connects to 127.0.0.1:6379 [P]
Matches the target version 0.900 [P]
Miscellaneous commands:
  PING (redis:ping) [P]
  ECHO (redis:echo) [P]
Commands operating on string values:
  SET (redis:set) [P]
  SETNX (redis:set_preserve) [P]
  GET (redis:get) [P]
  MGET (redis:get_multiple) [P]
  GETSET (redis:get_set) [P]
  INCR (redis:increment) [P]
  INCRBY (redis:increment_by) [P]
  DECR (redis:decrement) [P]
  DECRBY (redis:decrement_by) [P]
  EXISTS (redis:exists) [P]
  DEL (redis:delete) [P]
  TYPE (redis:type) [P]
Sorting:
  SORT (redis:sort) [P]
  SORT (redis:sort) with parameter ASC/DESC [P]
  SORT (redis:sort) with parameter LIMIT [P]
  SORT (redis:sort) with parameter ALPHA [P]
  SORT (redis:sort) with multiple parameters [P]
QUIT (redis:quit) closes the connection to the server [P]
------------------------------------------------------------------------
22 tests 22 passed 56 assertions 0 failed 0 errors 0 unassertive 0 pending