Small Redis

December 18, 2021 ยท View on GitHub

Very basic V library for sending raw redis commands.

import smallredis

fn main() {
    mut r := smallredis.connect() ? // connects to localhost by default
    res := r.typed_cmd<string>('GET "my key"') ?
    println(res)
}