14 lines
320 B
C
14 lines
320 B
C
|
|
#ifndef __TANGO_CACHE_REDIS_H__
|
||
|
|
#define __TANGO_CACHE_REDIS_H__
|
||
|
|
|
||
|
|
#include <event2/event.h>
|
||
|
|
#include <event.h>
|
||
|
|
|
||
|
|
#include "tango_cache_client_in.h"
|
||
|
|
|
||
|
|
int tango_cache_head_redis(struct tango_cache_ctx *ctx);
|
||
|
|
int redis_asyn_connect_init(struct tango_cache_instance *instance, const char *redisip, int redis_port);
|
||
|
|
|
||
|
|
#endif
|
||
|
|
|