redis-plus-plus icon indicating copy to clipboard operation
redis-plus-plus copied to clipboard

Redis client written in C++

Results 73 redis-plus-plus issues
Sort by recently updated
recently updated
newest added

Hi, i think it's better for parse methods to accept `const redisReply&` instead of `redisReply&`

Hi, I am currently working on a project an want to use redis-plus-plus. I am using cmake and want to setup redis-plus-plus as a submodule in my repository and then...

Although the parameters and return values are detailed in the documentation, we might still need to add some comments on how to use these methods in the header file.

`ConnectionOptions::keep_alive` is `false` by default. However, in order to be more efficient, we'd like to keep the connection alive. So I'll make this option be `true` by default.

I benchmark async cluster, async cluster instances create 64 num。 machine 32c 62g。 command send `get`,`key` is 6B、 `value` is 1kB data。 I send 13w qps,when machine cpu is 50%。...

cmake_minimum_required(VERSION 3.14 FATAL_ERROR) project ("redis_cpp") if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") set(CMAKE_POLICY_DEFAULT_CMP0077 NEW) endif() set(CPM_DOWNLOAD_LOCATION "${PROJECT_SOURCE_DIR}/cmake/CPM.cmake") set(CPM_GET_CPM_DOWNLOAD_LOCATION "${PROJECT_SOURCE_DIR}/cmake/get_cpm.cmake") if(NOT EXISTS ${CPM_DOWNLOAD_LOCATION}) message(STATUS "Downloading CPM.cmake") file(DOWNLOAD https://github.com/cpm-cmake/CPM.cmake/releases/latest/download/CPM.cmake ${CPM_DOWNLOAD_LOCATION}) else() message(STATUS "CPM.cmake exists pass download")...

Hi, I have recently migrated to 1.3.5 version and I have found a compilation error, using VS17. It's related with queued_redis.hpp, and I was compiling for x86 debug. Oh, and...

**Describe the bug** Doing multiple builds at the same time from the same source tree sporadically fails because "hiredis_features.h" is generated in the source tree. **To Reproduce** Make a massive...

Is there a way to get redis++ version at the compile time (define)? Didn't find anything in headers...