File: redis_sentinel.h

package info (click to toggle)
php-redis 5.3.7%2B4.3.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 3,012 kB
  • sloc: ansic: 34,345; php: 12,275; xml: 1,910; sh: 297; makefile: 2
file content (20 lines) | stat: -rw-r--r-- 568 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef REDIS_SENTINEL_H
#define REDIS_SENTINEL_H

#include "sentinel_library.h"

#define PHP_REDIS_SENTINEL_VERSION "0.1"

PHP_METHOD(RedisSentinel, __construct);
PHP_METHOD(RedisSentinel, ckquorum);
PHP_METHOD(RedisSentinel, failover);
PHP_METHOD(RedisSentinel, flushconfig);
PHP_METHOD(RedisSentinel, getMasterAddrByName);
PHP_METHOD(RedisSentinel, master);
PHP_METHOD(RedisSentinel, masters);
PHP_METHOD(RedisSentinel, ping);
PHP_METHOD(RedisSentinel, reset);
PHP_METHOD(RedisSentinel, sentinels);
PHP_METHOD(RedisSentinel, slaves);

#endif /* REDIS_SENTINEL_H */