├── .gitignore ├── LICENSE ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── logo.png ├── settings.gradle └── src ├── main └── kotlin │ └── br │ └── com │ └── devsrsouza │ └── redissed │ ├── RedisObject.kt │ ├── RedissedCommands.kt │ ├── Utils.kt │ ├── clients │ ├── Jedis.kt │ └── Lettuce.kt │ ├── delegates │ ├── ParserDelegate.kt │ ├── ParserDelegateNullable.kt │ ├── RedisObjectDelegate.kt │ ├── RedissedDelegate.kt │ ├── RedissedDelegateNullable.kt │ ├── RedissedDelegateNullableWithExpire.kt │ ├── RedissedDelegateWithExpire.kt │ ├── RedissedExpireDelegate.kt │ └── RedissedExpireDelegateNullable.kt │ └── parsers │ ├── BooleanParser.kt │ ├── ByteParser.kt │ ├── DoubleParser.kt │ ├── FloatParser.kt │ ├── IntParser.kt │ ├── LongParser.kt │ ├── Parser.kt │ ├── ShortParser.kt │ └── StringParser.kt └── test └── kotlin └── br └── com └── devsrsouza └── redissed └── test └── RedisObjectTest.kt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevSrSouza/Redissed/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevSrSouza/Redissed/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevSrSouza/Redissed/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevSrSouza/Redissed/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevSrSouza/Redissed/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevSrSouza/Redissed/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevSrSouza/Redissed/HEAD/gradlew.bat -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevSrSouza/Redissed/HEAD/logo.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'Redissed' 2 | 3 | -------------------------------------------------------------------------------- /src/main/kotlin/br/com/devsrsouza/redissed/RedisObject.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevSrSouza/Redissed/HEAD/src/main/kotlin/br/com/devsrsouza/redissed/RedisObject.kt -------------------------------------------------------------------------------- /src/main/kotlin/br/com/devsrsouza/redissed/RedissedCommands.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevSrSouza/Redissed/HEAD/src/main/kotlin/br/com/devsrsouza/redissed/RedissedCommands.kt -------------------------------------------------------------------------------- /src/main/kotlin/br/com/devsrsouza/redissed/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevSrSouza/Redissed/HEAD/src/main/kotlin/br/com/devsrsouza/redissed/Utils.kt -------------------------------------------------------------------------------- /src/main/kotlin/br/com/devsrsouza/redissed/clients/Jedis.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevSrSouza/Redissed/HEAD/src/main/kotlin/br/com/devsrsouza/redissed/clients/Jedis.kt -------------------------------------------------------------------------------- /src/main/kotlin/br/com/devsrsouza/redissed/clients/Lettuce.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevSrSouza/Redissed/HEAD/src/main/kotlin/br/com/devsrsouza/redissed/clients/Lettuce.kt -------------------------------------------------------------------------------- /src/main/kotlin/br/com/devsrsouza/redissed/delegates/ParserDelegate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevSrSouza/Redissed/HEAD/src/main/kotlin/br/com/devsrsouza/redissed/delegates/ParserDelegate.kt -------------------------------------------------------------------------------- /src/main/kotlin/br/com/devsrsouza/redissed/delegates/ParserDelegateNullable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevSrSouza/Redissed/HEAD/src/main/kotlin/br/com/devsrsouza/redissed/delegates/ParserDelegateNullable.kt -------------------------------------------------------------------------------- /src/main/kotlin/br/com/devsrsouza/redissed/delegates/RedisObjectDelegate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevSrSouza/Redissed/HEAD/src/main/kotlin/br/com/devsrsouza/redissed/delegates/RedisObjectDelegate.kt -------------------------------------------------------------------------------- /src/main/kotlin/br/com/devsrsouza/redissed/delegates/RedissedDelegate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevSrSouza/Redissed/HEAD/src/main/kotlin/br/com/devsrsouza/redissed/delegates/RedissedDelegate.kt -------------------------------------------------------------------------------- /src/main/kotlin/br/com/devsrsouza/redissed/delegates/RedissedDelegateNullable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevSrSouza/Redissed/HEAD/src/main/kotlin/br/com/devsrsouza/redissed/delegates/RedissedDelegateNullable.kt -------------------------------------------------------------------------------- /src/main/kotlin/br/com/devsrsouza/redissed/delegates/RedissedDelegateNullableWithExpire.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevSrSouza/Redissed/HEAD/src/main/kotlin/br/com/devsrsouza/redissed/delegates/RedissedDelegateNullableWithExpire.kt -------------------------------------------------------------------------------- /src/main/kotlin/br/com/devsrsouza/redissed/delegates/RedissedDelegateWithExpire.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevSrSouza/Redissed/HEAD/src/main/kotlin/br/com/devsrsouza/redissed/delegates/RedissedDelegateWithExpire.kt -------------------------------------------------------------------------------- /src/main/kotlin/br/com/devsrsouza/redissed/delegates/RedissedExpireDelegate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevSrSouza/Redissed/HEAD/src/main/kotlin/br/com/devsrsouza/redissed/delegates/RedissedExpireDelegate.kt -------------------------------------------------------------------------------- /src/main/kotlin/br/com/devsrsouza/redissed/delegates/RedissedExpireDelegateNullable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevSrSouza/Redissed/HEAD/src/main/kotlin/br/com/devsrsouza/redissed/delegates/RedissedExpireDelegateNullable.kt -------------------------------------------------------------------------------- /src/main/kotlin/br/com/devsrsouza/redissed/parsers/BooleanParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevSrSouza/Redissed/HEAD/src/main/kotlin/br/com/devsrsouza/redissed/parsers/BooleanParser.kt -------------------------------------------------------------------------------- /src/main/kotlin/br/com/devsrsouza/redissed/parsers/ByteParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevSrSouza/Redissed/HEAD/src/main/kotlin/br/com/devsrsouza/redissed/parsers/ByteParser.kt -------------------------------------------------------------------------------- /src/main/kotlin/br/com/devsrsouza/redissed/parsers/DoubleParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevSrSouza/Redissed/HEAD/src/main/kotlin/br/com/devsrsouza/redissed/parsers/DoubleParser.kt -------------------------------------------------------------------------------- /src/main/kotlin/br/com/devsrsouza/redissed/parsers/FloatParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevSrSouza/Redissed/HEAD/src/main/kotlin/br/com/devsrsouza/redissed/parsers/FloatParser.kt -------------------------------------------------------------------------------- /src/main/kotlin/br/com/devsrsouza/redissed/parsers/IntParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevSrSouza/Redissed/HEAD/src/main/kotlin/br/com/devsrsouza/redissed/parsers/IntParser.kt -------------------------------------------------------------------------------- /src/main/kotlin/br/com/devsrsouza/redissed/parsers/LongParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevSrSouza/Redissed/HEAD/src/main/kotlin/br/com/devsrsouza/redissed/parsers/LongParser.kt -------------------------------------------------------------------------------- /src/main/kotlin/br/com/devsrsouza/redissed/parsers/Parser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevSrSouza/Redissed/HEAD/src/main/kotlin/br/com/devsrsouza/redissed/parsers/Parser.kt -------------------------------------------------------------------------------- /src/main/kotlin/br/com/devsrsouza/redissed/parsers/ShortParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevSrSouza/Redissed/HEAD/src/main/kotlin/br/com/devsrsouza/redissed/parsers/ShortParser.kt -------------------------------------------------------------------------------- /src/main/kotlin/br/com/devsrsouza/redissed/parsers/StringParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevSrSouza/Redissed/HEAD/src/main/kotlin/br/com/devsrsouza/redissed/parsers/StringParser.kt -------------------------------------------------------------------------------- /src/test/kotlin/br/com/devsrsouza/redissed/test/RedisObjectTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevSrSouza/Redissed/HEAD/src/test/kotlin/br/com/devsrsouza/redissed/test/RedisObjectTest.kt --------------------------------------------------------------------------------