hiredis-vip-0.3.0.zip编译修正
This commit is contained in:
2
cache/include/object_store_client.h
vendored
2
cache/include/object_store_client.h
vendored
@@ -29,7 +29,7 @@ int object_store_head_object(struct object_store_instance *instance, struct futu
|
|||||||
struct tango_cache_result *object_store_read_result(void *promise_result);
|
struct tango_cache_result *object_store_read_result(void *promise_result);
|
||||||
|
|
||||||
//DELETE<54>ӿ<EFBFBD>
|
//DELETE<54>ӿ<EFBFBD>
|
||||||
int object_store_delete_object(struct object_store_instance *instance, struct future* f, const char *objkey);
|
int object_store_delete_object(struct object_store_instance *instance, struct future* f, const char *objkey, const char *minio_addr=NULL, const char *bucket=NULL);
|
||||||
|
|
||||||
//һ<><D2BB><EFBFBD><EFBFBD><EFBFBD>ϴ<EFBFBD><CFB4>ӿ<EFBFBD>
|
//һ<><D2BB><EFBFBD><EFBFBD><EFBFBD>ϴ<EFBFBD><CFB4>ӿ<EFBFBD>
|
||||||
int object_store_upload_once_data(struct object_store_instance *instance, struct future* f,
|
int object_store_upload_once_data(struct object_store_instance *instance, struct future* f,
|
||||||
|
|||||||
4
cache/src/object_store_client.cpp
vendored
4
cache/src/object_store_client.cpp
vendored
@@ -104,9 +104,9 @@ int object_store_head_object(struct object_store_instance *instance, struct futu
|
|||||||
return cache_evbase_head_object(instance->instances[rand()%instance->instance_num], f, meta);
|
return cache_evbase_head_object(instance->instances[rand()%instance->instance_num], f, meta);
|
||||||
}
|
}
|
||||||
|
|
||||||
int object_store_delete_object(struct object_store_instance *instance, struct future* f, const char *objkey)
|
int object_store_delete_object(struct object_store_instance *instance, struct future* f, const char *objkey, const char *minio_addr, const char *bucket)
|
||||||
{
|
{
|
||||||
return cache_evbase_delete_object(instance->instances[rand()%instance->instance_num], f, objkey);
|
return cache_evbase_delete_object(instance->instances[rand()%instance->instance_num], f, objkey, minio_addr, bucket);
|
||||||
}
|
}
|
||||||
|
|
||||||
struct object_store_instance *object_store_instance_new(const char* profile_path, const char* section, int thread_num, void *runtimelog)
|
struct object_store_instance *object_store_instance_new(const char* profile_path, const char* section, int thread_num, void *runtimelog)
|
||||||
|
|||||||
2
vendor/CMakeLists.txt
vendored
2
vendor/CMakeLists.txt
vendored
@@ -251,7 +251,7 @@ set_property(TARGET libcurl-static PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${INST
|
|||||||
### hiredis
|
### hiredis
|
||||||
ExternalProject_Add(hiredisCluster PREFIX hiredisCluster
|
ExternalProject_Add(hiredisCluster PREFIX hiredisCluster
|
||||||
URL ${CMAKE_CURRENT_SOURCE_DIR}/hiredis-vip-0.3.0.zip
|
URL ${CMAKE_CURRENT_SOURCE_DIR}/hiredis-vip-0.3.0.zip
|
||||||
URL_MD5 950ccc040a705ebe6c6b1854a744ae2d
|
URL_MD5 8d0636f911d4a4a6ec8aeff2abb5bc0f
|
||||||
CONFIGURE_COMMAND ""
|
CONFIGURE_COMMAND ""
|
||||||
BUILD_COMMAND make
|
BUILD_COMMAND make
|
||||||
INSTALL_COMMAND make install
|
INSTALL_COMMAND make install
|
||||||
|
|||||||
BIN
vendor/hiredis-vip-0.3.0.zip
vendored
BIN
vendor/hiredis-vip-0.3.0.zip
vendored
Binary file not shown.
Reference in New Issue
Block a user