func-redis

version 0.1.0-rc0005

GitHub CI Quality Gate Status codecov Mutation testing badge

This repo contains components aimed to simplify the adoption of Redis in dotnet using a Functional Programming-first approach (thanks to Franco Melandri’s tiny-fp).

The library includes functionalities for:

To register the required components, use:

...
    services
        .AddRedis<TypeOfRedisSerDes>(RedisCapabilities.Keys | ...) // capabilities as flags
        ...

where capabilities is a bitwise combination of RedisCapabilities:

See here for some details on the usage of the library.