-
Notifications
You must be signed in to change notification settings - Fork 10
/
CHANGELOG
90 lines (59 loc) · 2.73 KB
/
CHANGELOG
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
* CHANGELOG
=========================================
2017-12-25
- Fixed a bug that prevented cluster forming correctly and addressing of keys toward
external nodes
2017-08-10
- Fixed some problems regarding EPOLLET with a threadpool, using EPOLLONESHOT to
manually rearm socket descriptor at every event, at the cost of an additional
system call
- Refactored command handling, trying to decouple a bit more modules
2017-02-11
- Fixed some bugs
- Added CLUSTERINFO commands, retrieve some informations regarding cluster state
2017-02-10
- Almost complete refactoring of the code
- Better organization, removed some useless commands
- Rethink of the distribution part of the system
- Rename of the project
2017-01-19
- Rough support to distribution across a cluster of machines
- Added murmur hashing algorithm to the hashing header
2016-09-06
- Added new commands INCF and DECF, respectively increment/decrement by float quantity
the float value represented by key specified
- Added new command TTL, returning the time to live of a specified key
- Minor fixes
2016-09-05
- Added new command EXPIRE, set a timer in milliseconds to a key after that the key and his value
is wiped
- Added new comand GETP, return infos of a key-value pair
- Improved shibui-cli, printing help and correctly handling SUB and TAIL command
2016-08-31
- Started shibui-cli, supports basic commands without any human readability
improvement
2016-08-30
- Corrected some bug, added new commands `APPEND key value` and `PREPEND key value`
2016-08-29
- Altered some commands, now DEL, SUB and UNSUB accept a list of keys, INC and
DEC accept an optional value to be added to the current integer value of the
key
2016-08-26
- Added new command `FUZZYSCAN pattern`, perform a search through the keyspace
returning all values associated to keys that match a given pattern by fuzzy
search.
- Added new command `UNSUB key` to stop receiving feeds from the key.
- Added new command `FLUSH' to delete all keys in the keyspace
- Fixed rehash_map code in order to update data history and the subscribers
array as well when resizing the map.
- Added new commands `KEYS` and `VALUES` respectively return all keys and all
values stored in the hashmap
- Added partitioning to keyspace distribution, this should simplify an aventual
distribution across multiple nodes.
2016-08-25
- Added new command `TAIL key number`, consume all values published to a key and
subscribe to it. Number is the offset of the depletion, with 0 meaning "from
the very first" and incresing number discard subsequents messages.
- Fixed some bugs e refactored some code.
- Added new command `PREFSCAN key_prefix`, find all values associated to keys that
matches the prefix specified by key_prefix.