-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtasks.txt
54 lines (47 loc) · 1.49 KB
/
tasks.txt
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
https://redis.io/topics/data-types
https://redis.io/topics/protocol
- Package maganer
# Redis like in-memory DB
- Echo server TCP PORT 6379
- REdis Serialization Protocol implementation
- Start server and use redis-cli - demo
- Networking module
- Connection command set
- Select DB after connecting
- List of commands - allowed commands
- Enhance the parser to handle multiple args with double quotes or without double quotes
- Arguments Type/Count validation
- Response Type/Format
- Treat commands - String and encoded
- Command table - command spec - function pointer
- Result() interface for all commands
- Build memory store
- Expiry time for key
- Persistance
- Read config from file
- Set, Hash, List and other datastructures
- Single node, MAster-slave, Cluster, Master-slave cluster and Sharding etc.
- Redis cluster Protocol
- Test suite
# Get All commands from redis.io
redis = {};
jQuery('#commands li').each(function(index, command) {
command = jQuery(command)
var group_name = command.data('group')
var name = command.data('name').toUpperCase()
var args = jQuery('.args', command).text().replace(/\s\s+/g, ' ');
if (redis[group_name]) {
group = redis[group_name]
} else {
redis[group_name] = []
group = redis[group_name]
}
comm = {
'group': group_name,
'name': name,
'args': args,
'summary': jQuery('.summary', command).text()
}
group.push(comm)
})
JSON.stringify(redis)