File tree 1 file changed +25
-6
lines changed
1 file changed +25
-6
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ class Memcached {
10
10
*/
11
11
12
12
const OPT_HASH ;
13
-
14
- const OPT_HASH_DEFAULT ;
13
+
14
+ const HASH_DEFAULT ;
15
15
16
16
const HASH_MD5 ;
17
17
@@ -37,9 +37,13 @@ class Memcached {
37
37
38
38
const DISTRIBUTION_VIRTUAL_BUCKET ;
39
39
40
- const LIBKETAMA_COMPATIBLE ;
40
+ const OPT_LIBKETAMA_COMPATIBLE ;
41
+
42
+ const OPT_LIBKETAMA_HASH ;
41
43
42
- const OPT_BUFFER_REQUESTS ;
44
+ const OPT_TCP_KEEPALIVE ;
45
+
46
+ const OPT_BUFFER_WRITES ;
43
47
44
48
const OPT_BINARY_PROTOCOL ;
45
49
@@ -81,12 +85,21 @@ class Memcached {
81
85
82
86
83
87
/**
84
- * Class parameters
88
+ * Supported serializers
85
89
*/
86
90
const HAVE_JSON ;
87
91
88
92
const HAVE_IGBINARY ;
89
93
94
+ const HAVE_MSGPACK ;
95
+
96
+ /**
97
+ * Feature support
98
+ */
99
+ const HAVE_SESSION ;
100
+
101
+ const HAVE_SASL ;
102
+
90
103
/**
91
104
* Class options.
92
105
*/
@@ -107,6 +120,8 @@ class Memcached {
107
120
108
121
const SERIALIZER_JSON_ARRAY ;
109
122
123
+ const SERIALIZER_MSGPACK ;
124
+
110
125
/**
111
126
* Compression types
112
127
*/
@@ -115,10 +130,14 @@ class Memcached {
115
130
const COMPRESSION_TYPE_ZLIB ;
116
131
117
132
/**
118
- * Flags
133
+ * Flags for get and getMulti operations.
119
134
*/
135
+ // Whether to preserve key order in the result
120
136
const GET_PRESERVE_ORDER ;
121
137
138
+ // Whether to fetch CAS token as well (use "gets").
139
+ const GET_EXTENDED ;
140
+
122
141
/**
123
142
* Return values
124
143
*/
You can’t perform that action at this time.
0 commit comments