Re: Redis-inspired key/value store in PicoLisp
Hi, I pushed a new release today which includes on-disk persistence of the in-memory DB. It uses AOF (WAL) and snapshot to disk, and is somewhat similar to the way Redis does it, but much better in my opinion (and simpler!). The README contains more info. Have a look: https://github.com/aw/picolisp-kv Cheers, AW On Tue, 16 Jun 2020, Alexander Williams wrote: Hi everyone, I wanted to build a TCP-based client/server FIFO queue in PicoLisp, and ended up re-creating a small part of Redis[1]. You can check it out here: https://github.com/aw/picolisp-kv It's still quite different from Redis behind the scenes, but some functionality will be familiar to those who've used it. The source code is published under the MIT license. Enjoy, AW - [1]https://redis.io -- UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe
Re: Redis-inspired key/value store in PicoLisp
hah! Well it's not too late to write it, or contribute to this project ;) In fact, for me this was more of a way to sharpen my UNIX skills. Thanks for the comment George. AW On Tue, 16 Jun 2020, Yiorgos [George] Adamopoulos wrote: Good job! I have to confess you beat me to it! I always thought a kv store would be a cool way to sharpen picolisp skills! On Tue, Jun 16, 2020 at 12:40 PM Alexander Williams wrote: Hi everyone, I wanted to build a TCP-based client/server FIFO queue in PicoLisp, and ended up re-creating a small part of Redis[1]. You can check it out here: https://github.com/aw/picolisp-kv It's still quite different from Redis behind the scenes, but some functionality will be familiar to those who've used it. The source code is published under the MIT license. Enjoy, AW - [1]https://redis.io -- UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe -- keep raising the bar -- UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe -- UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe
Re: Redis-inspired key/value store in PicoLisp
Hello Alexander! Very nice project, I'll be looking for test your library! Looking good. Soon enough picolisp gonna have all popular libs / integrations to challenge other stacks :) Regards, Nail. On 6/16/20 12:34 PM, Alexander Williams wrote: Hi everyone, I wanted to build a TCP-based client/server FIFO queue in PicoLisp, and ended up re-creating a small part of Redis[1]. You can check it out here: https://github.com/aw/picolisp-kv It's still quite different from Redis behind the scenes, but some functionality will be familiar to those who've used it. The source code is published under the MIT license. Enjoy, AW - [1]https://redis.io -- UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe
Re: Redis-inspired key/value store in PicoLisp
Good job! I have to confess you beat me to it! I always thought a kv store would be a cool way to sharpen picolisp skills! On Tue, Jun 16, 2020 at 12:40 PM Alexander Williams wrote: > > Hi everyone, > > I wanted to build a TCP-based client/server FIFO queue in PicoLisp, and > ended up re-creating a small part of Redis[1]. > > You can check it out here: https://github.com/aw/picolisp-kv > > It's still quite different from Redis behind the scenes, but some > functionality will be familiar to those who've used it. > > The source code is published under the MIT license. > > Enjoy, > > > AW > > > - [1]https://redis.io > > -- > UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe > -- keep raising the bar -- UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe
Redis-inspired key/value store in PicoLisp
Hi everyone, I wanted to build a TCP-based client/server FIFO queue in PicoLisp, and ended up re-creating a small part of Redis[1]. You can check it out here: https://github.com/aw/picolisp-kv It's still quite different from Redis behind the scenes, but some functionality will be familiar to those who've used it. The source code is published under the MIT license. Enjoy, AW - [1]https://redis.io -- UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe