https://github.com/viniciusmuller/falue
In-memory key-value store application written in F#
https://github.com/viniciusmuller/falue
Last synced: 4 months ago
JSON representation
In-memory key-value store application written in F#
- Host: GitHub
- URL: https://github.com/viniciusmuller/falue
- Owner: viniciusmuller
- License: mit
- Created: 2022-07-28T02:20:42.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-08-02T03:08:43.000Z (almost 3 years ago)
- Last Synced: 2025-01-11T18:48:38.691Z (5 months ago)
- Language: F#
- Size: 24.4 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Falue
Falue is an in-progress in-memory key-value store application.
It offers a TCP interface and guarantees strong data consistency by using the
actor model to queue reads and writes.# Usage
```shell
[nix-shell:~/projects/falue/Falue/src/App]$ telnet localhost 8080
set a = 1
:ok
set 2342 = 23432
:ok
set b = "strings"
:ok
listkeys
2342
a
b
get b
strings
```# Contributing
You can run the tests with `dotnet test` inside the `Falue.Tests` project# TODO
- Implement TTL
- Implement client library
- Add `select` command