Support sequences of increasing numbers like 12345. When is this feature released?
Comment From: madolson
Have you considered the append command? It allows you to append strings, or integers in your case, to the end of existing strings.
127.0.0.1:6379> set increasing 1
OK
127.0.0.1:6379> append increasing 2
(integer) 2
127.0.0.1:6379> get increasing
"12"
127.0.0.1:6379> append increasing 3
(integer) 3
127.0.0.1:6379> get increasing
"123"
127.0.0.1:6379> append increasing 4
(integer) 4
127.0.0.1:6379> get increasing
"1234"
127.0.0.1:6379> append increasing 5
(integer) 5
127.0.0.1:6379> get increasing
"12345"
Let me know if this helps.
Comment From: zuiderkwast
It's a good workaround but it's hard workout to keep track of counting. Can you add examples up to 43, so we can copy-paste the commands? To go further than that, I think we need APPENDINCR. To only increment existing numbers and store them in the end of the file, we need APPENDIX. :trollface: