summaryrefslogtreecommitdiffstats
path: root/REFLECTION
blob: 27c0a72796fce1b32b5bb50156e2adb7eadfd74f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
Extension [ <persistent> extension #189 memcached version 3.1.3 ] {

  - Dependencies {
    Dependency [ session (Required) ]
    Dependency [ igbinary (Required) ]
    Dependency [ msgpack (Required) ]
    Dependency [ spl (Required) ]
  }

  - INI {
    Entry [ memcached.sess_locking <ALL> ]
      Current = '1'
    }
    Entry [ memcached.sess_lock_wait_min <ALL> ]
      Current = '150'
    }
    Entry [ memcached.sess_lock_wait_max <ALL> ]
      Current = '150'
    }
    Entry [ memcached.sess_lock_retries <ALL> ]
      Current = '5'
    }
    Entry [ memcached.sess_lock_expire <ALL> ]
      Current = '0'
    }
    Entry [ memcached.sess_binary_protocol <ALL> ]
      Current = '1'
    }
    Entry [ memcached.sess_consistent_hash <ALL> ]
      Current = '1'
    }
    Entry [ memcached.sess_consistent_hash_type <ALL> ]
      Current = 'ketama'
    }
    Entry [ memcached.sess_number_of_replicas <ALL> ]
      Current = '0'
    }
    Entry [ memcached.sess_randomize_replica_read <ALL> ]
      Current = '0'
    }
    Entry [ memcached.sess_remove_failed_servers <ALL> ]
      Current = '0'
    }
    Entry [ memcached.sess_server_failure_limit <ALL> ]
      Current = '0'
    }
    Entry [ memcached.sess_connect_timeout <ALL> ]
      Current = '0'
    }
    Entry [ memcached.sess_sasl_username <ALL> ]
      Current = ''
    }
    Entry [ memcached.sess_sasl_password <ALL> ]
      Current = ''
    }
    Entry [ memcached.sess_persistent <ALL> ]
      Current = '0'
    }
    Entry [ memcached.sess_prefix <ALL> ]
      Current = 'memc.sess.key.'
    }
    Entry [ memcached.sess_lock_wait <ALL> ]
      Current = 'not set'
    }
    Entry [ memcached.sess_lock_max_wait <ALL> ]
      Current = 'not set'
    }
    Entry [ memcached.compression_type <ALL> ]
      Current = 'fastlz'
    }
    Entry [ memcached.compression_factor <ALL> ]
      Current = '1.3'
    }
    Entry [ memcached.compression_threshold <ALL> ]
      Current = '2000'
    }
    Entry [ memcached.serializer <ALL> ]
      Current = 'igbinary'
    }
    Entry [ memcached.store_retry_count <ALL> ]
      Current = '2'
    }
    Entry [ memcached.default_consistent_hash <ALL> ]
      Current = '0'
    }
    Entry [ memcached.default_binary_protocol <ALL> ]
      Current = '0'
    }
    Entry [ memcached.default_connect_timeout <ALL> ]
      Current = '0'
    }
  }

  - Classes [3] {
    Class [ <internal:memcached> class Memcached ] {

      - Constants [133] {
        Constant [ public integer LIBMEMCACHED_VERSION_HEX ] { 16777240 }
        Constant [ public integer OPT_COMPRESSION ] { -1001 }
        Constant [ public integer OPT_COMPRESSION_TYPE ] { -1004 }
        Constant [ public integer OPT_PREFIX_KEY ] { -1002 }
        Constant [ public integer OPT_SERIALIZER ] { -1003 }
        Constant [ public integer OPT_USER_FLAGS ] { -1006 }
        Constant [ public integer OPT_STORE_RETRY_COUNT ] { -1005 }
        Constant [ public boolean HAVE_IGBINARY ] { 1 }
        Constant [ public boolean HAVE_JSON ] { 1 }
        Constant [ public boolean HAVE_MSGPACK ] { 1 }
        Constant [ public boolean HAVE_ENCODING ] { 1 }
        Constant [ public boolean HAVE_SESSION ] { 1 }
        Constant [ public boolean HAVE_SASL ] { 1 }
        Constant [ public integer OPT_HASH ] { 2 }
        Constant [ public integer HASH_DEFAULT ] { 0 }
        Constant [ public integer HASH_MD5 ] { 1 }
        Constant [ public integer HASH_CRC ] { 2 }
        Constant [ public integer HASH_FNV1_64 ] { 3 }
        Constant [ public integer HASH_FNV1A_64 ] { 4 }
        Constant [ public integer HASH_FNV1_32 ] { 5 }
        Constant [ public integer HASH_FNV1A_32 ] { 6 }
        Constant [ public integer HASH_HSIEH ] { 7 }
        Constant [ public integer HASH_MURMUR ] { 8 }
        Constant [ public integer OPT_DISTRIBUTION ] { 9 }
        Constant [ public integer DISTRIBUTION_MODULA ] { 0 }
        Constant [ public integer DISTRIBUTION_CONSISTENT ] { 1 }
        Constant [ public integer DISTRIBUTION_VIRTUAL_BUCKET ] { 6 }
        Constant [ public integer OPT_LIBKETAMA_COMPATIBLE ] { 16 }
        Constant [ public integer OPT_LIBKETAMA_HASH ] { 17 }
        Constant [ public integer OPT_TCP_KEEPALIVE ] { 32 }
        Constant [ public integer OPT_BUFFER_WRITES ] { 10 }
        Constant [ public integer OPT_BINARY_PROTOCOL ] { 18 }
        Constant [ public integer OPT_NO_BLOCK ] { 0 }
        Constant [ public integer OPT_TCP_NODELAY ] { 1 }
        Constant [ public integer OPT_SOCKET_SEND_SIZE ] { 4 }
        Constant [ public integer OPT_SOCKET_RECV_SIZE ] { 5 }
        Constant [ public integer OPT_CONNECT_TIMEOUT ] { 14 }
        Constant [ public integer OPT_RETRY_TIMEOUT ] { 15 }
        Constant [ public integer OPT_DEAD_TIMEOUT ] { 36 }
        Constant [ public integer OPT_SEND_TIMEOUT ] { 19 }
        Constant [ public integer OPT_RECV_TIMEOUT ] { 20 }
        Constant [ public integer OPT_POLL_TIMEOUT ] { 8 }
        Constant [ public integer OPT_CACHE_LOOKUPS ] { 6 }
        Constant [ public integer OPT_SERVER_FAILURE_LIMIT ] { 21 }
        Constant [ public integer OPT_AUTO_EJECT_HOSTS ] { 28 }
        Constant [ public integer OPT_HASH_WITH_PREFIX_KEY ] { 25 }
        Constant [ public integer OPT_NOREPLY ] { 26 }
        Constant [ public integer OPT_SORT_HOSTS ] { 12 }
        Constant [ public integer OPT_VERIFY_KEY ] { 13 }
        Constant [ public integer OPT_USE_UDP ] { 27 }
        Constant [ public integer OPT_NUMBER_OF_REPLICAS ] { 29 }
        Constant [ public integer OPT_RANDOMIZE_REPLICA_READ ] { 30 }
        Constant [ public integer OPT_REMOVE_FAILED_SERVERS ] { 35 }
        Constant [ public integer OPT_SERVER_TIMEOUT_LIMIT ] { 37 }
        Constant [ public integer RES_SUCCESS ] { 0 }
        Constant [ public integer RES_FAILURE ] { 1 }
        Constant [ public integer RES_HOST_LOOKUP_FAILURE ] { 2 }
        Constant [ public integer RES_UNKNOWN_READ_FAILURE ] { 7 }
        Constant [ public integer RES_PROTOCOL_ERROR ] { 8 }
        Constant [ public integer RES_CLIENT_ERROR ] { 9 }
        Constant [ public integer RES_SERVER_ERROR ] { 10 }
        Constant [ public integer RES_WRITE_FAILURE ] { 5 }
        Constant [ public integer RES_DATA_EXISTS ] { 12 }
        Constant [ public integer RES_NOTSTORED ] { 14 }
        Constant [ public integer RES_NOTFOUND ] { 16 }
        Constant [ public integer RES_PARTIAL_READ ] { 18 }
        Constant [ public integer RES_SOME_ERRORS ] { 19 }
        Constant [ public integer RES_NO_SERVERS ] { 20 }
        Constant [ public integer RES_END ] { 21 }
        Constant [ public integer RES_ERRNO ] { 26 }
        Constant [ public integer RES_BUFFERED ] { 32 }
        Constant [ public integer RES_TIMEOUT ] { 31 }
        Constant [ public integer RES_BAD_KEY_PROVIDED ] { 33 }
        Constant [ public integer RES_STORED ] { 15 }
        Constant [ public integer RES_DELETED ] { 22 }
        Constant [ public integer RES_STAT ] { 24 }
        Constant [ public integer RES_ITEM ] { 25 }
        Constant [ public integer RES_NOT_SUPPORTED ] { 28 }
        Constant [ public integer RES_FETCH_NOTFINISHED ] { 30 }
        Constant [ public integer RES_SERVER_MARKED_DEAD ] { 35 }
        Constant [ public integer RES_UNKNOWN_STAT_KEY ] { 36 }
        Constant [ public integer RES_INVALID_HOST_PROTOCOL ] { 34 }
        Constant [ public integer RES_MEMORY_ALLOCATION_FAILURE ] { 17 }
        Constant [ public integer RES_CONNECTION_SOCKET_CREATE_FAILURE ] { 11 }
        Constant [ public integer RES_E2BIG ] { 37 }
        Constant [ public integer RES_KEY_TOO_BIG ] { 39 }
        Constant [ public integer RES_SERVER_TEMPORARILY_DISABLED ] { 47 }
        Constant [ public integer RES_SERVER_MEMORY_ALLOCATION_FAILURE ] { 48 }
        Constant [ public integer RES_AUTH_PROBLEM ] { 40 }
        Constant [ public integer RES_AUTH_FAILURE ] { 41 }
        Constant [ public integer RES_AUTH_CONTINUE ] { 42 }
        Constant [ public integer RES_PAYLOAD_FAILURE ] { -1001 }
        Constant [ public integer SERIALIZER_PHP ] { 1 }
        Constant [ public integer SERIALIZER_IGBINARY ] { 2 }
        Constant [ public integer SERIALIZER_JSON ] { 3 }
        Constant [ public integer SERIALIZER_JSON_ARRAY ] { 4 }
        Constant [ public integer SERIALIZER_MSGPACK ] { 5 }
        Constant [ public integer COMPRESSION_FASTLZ ] { 2 }
        Constant [ public integer COMPRESSION_ZLIB ] { 1 }
        Constant [ public integer GET_PRESERVE_ORDER ] { 1 }
        Constant [ public integer GET_EXTENDED ] { 2 }
        Constant [ public integer ON_CONNECT ] { 0 }
        Constant [ public integer ON_ADD ] { 1 }
        Constant [ public integer ON_APPEND ] { 2 }
        Constant [ public integer ON_DECREMENT ] { 3 }
        Constant [ public integer ON_DELETE ] { 4 }
        Constant [ public integer ON_FLUSH ] { 5 }
        Constant [ public integer ON_GET ] { 6 }
        Constant [ public integer ON_INCREMENT ] { 7 }
        Constant [ public integer ON_NOOP ] { 8 }
        Constant [ public integer ON_PREPEND ] { 9 }
        Constant [ public integer ON_QUIT ] { 10 }
        Constant [ public integer ON_REPLACE ] { 11 }
        Constant [ public integer ON_SET ] { 12 }
        Constant [ public integer ON_STAT ] { 13 }
        Constant [ public integer ON_VERSION ] { 14 }
        Constant [ public integer RESPONSE_SUCCESS ] { 0 }
        Constant [ public integer RESPONSE_KEY_ENOENT ] { 1 }
        Constant [ public integer RESPONSE_KEY_EEXISTS ] { 2 }
        Constant [ public integer RESPONSE_E2BIG ] { 3 }
        Constant [ public integer RESPONSE_EINVAL ] { 4 }
        Constant [ public integer RESPONSE_NOT_STORED ] { 5 }
        Constant [ public integer RESPONSE_DELTA_BADVAL ] { 6 }
        Constant [ public integer RESPONSE_NOT_MY_VBUCKET ] { 7 }
        Constant [ public integer RESPONSE_AUTH_ERROR ] { 32 }
        Constant [ public integer RESPONSE_AUTH_CONTINUE ] { 33 }
        Constant [ public integer RESPONSE_UNKNOWN_COMMAND ] { 129 }
        Constant [ public integer RESPONSE_ENOMEM ] { 130 }
        Constant [ public integer RESPONSE_NOT_SUPPORTED ] { 131 }
        Constant [ public integer RESPONSE_EINTERNAL ] { 132 }
        Constant [ public integer RESPONSE_EBUSY ] { 133 }
        Constant [ public integer RESPONSE_ETMPFAIL ] { 134 }
        Constant [ public boolean GET_ERROR_RETURN_VALUE ] {  }
      }

      - Static properties [0] {
      }

      - Static methods [0] {
      }

      - Properties [0] {
      }

      - Methods [58] {
        Method [ <internal:memcached, ctor> public method __construct ] {

          - Parameters [2] {
            Parameter #0 [ <optional> $persistent_id ]
            Parameter #1 [ <optional> $callback ]
          }
        }

        Method [ <internal:memcached> public method getResultCode ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:memcached> public method getResultMessage ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:memcached> public method get ] {

          - Parameters [3] {
            Parameter #0 [ <required> $key ]
            Parameter #1 [ <optional> $cache_cb ]
            Parameter #2 [ <optional> $get_flags ]
          }
        }

        Method [ <internal:memcached> public method getByKey ] {

          - Parameters [4] {
            Parameter #0 [ <required> $server_key ]
            Parameter #1 [ <required> $key ]
            Parameter #2 [ <optional> $cache_cb ]
            Parameter #3 [ <optional> $get_flags ]
          }
        }

        Method [ <internal:memcached> public method getMulti ] {

          - Parameters [2] {
            Parameter #0 [ <required> array $keys ]
            Parameter #1 [ <optional> $get_flags ]
          }
        }

        Method [ <internal:memcached> public method getMultiByKey ] {

          - Parameters [3] {
            Parameter #0 [ <required> $server_key ]
            Parameter #1 [ <required> array $keys ]
            Parameter #2 [ <optional> $get_flags ]
          }
        }

        Method [ <internal:memcached> public method getDelayed ] {

          - Parameters [3] {
            Parameter #0 [ <required> array $keys ]
            Parameter #1 [ <optional> $with_cas ]
            Parameter #2 [ <optional> $value_cb ]
          }
        }

        Method [ <internal:memcached> public method getDelayedByKey ] {

          - Parameters [4] {
            Parameter #0 [ <required> $server_key ]
            Parameter #1 [ <required> array $keys ]
            Parameter #2 [ <optional> $with_cas ]
            Parameter #3 [ <optional> $value_cb ]
          }
        }

        Method [ <internal:memcached> public method fetch ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:memcached> public method fetchAll ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:memcached> public method set ] {

          - Parameters [3] {
            Parameter #0 [ <required> $key ]
            Parameter #1 [ <required> $value ]
            Parameter #2 [ <optional> $expiration ]
          }
        }

        Method [ <internal:memcached> public method setByKey ] {

          - Parameters [4] {
            Parameter #0 [ <required> $server_key ]
            Parameter #1 [ <required> $key ]
            Parameter #2 [ <required> $value ]
            Parameter #3 [ <optional> $expiration ]
          }
        }

        Method [ <internal:memcached> public method touch ] {

          - Parameters [2] {
            Parameter #0 [ <required> $key ]
            Parameter #1 [ <required> $expiration ]
          }
        }

        Method [ <internal:memcached> public method touchByKey ] {

          - Parameters [3] {
            Parameter #0 [ <required> $server_key ]
            Parameter #1 [ <required> $key ]
            Parameter #2 [ <required> $expiration ]
          }
        }

        Method [ <internal:memcached> public method setMulti ] {

          - Parameters [2] {
            Parameter #0 [ <required> array $items ]
            Parameter #1 [ <optional> $expiration ]
          }
        }

        Method [ <internal:memcached> public method setMultiByKey ] {

          - Parameters [3] {
            Parameter #0 [ <required> $server_key ]
            Parameter #1 [ <required> array $items ]
            Parameter #2 [ <optional> $expiration ]
          }
        }

        Method [ <internal:memcached> public method cas ] {

          - Parameters [4] {
            Parameter #0 [ <required> $cas_token ]
            Parameter #1 [ <required> $key ]
            Parameter #2 [ <required> $value ]
            Parameter #3 [ <optional> $expiration ]
          }
        }

        Method [ <internal:memcached> public method casByKey ] {

          - Parameters [5] {
            Parameter #0 [ <required> $cas_token ]
            Parameter #1 [ <required> $server_key ]
            Parameter #2 [ <required> $key ]
            Parameter #3 [ <required> $value ]
            Parameter #4 [ <optional> $expiration ]
          }
        }

        Method [ <internal:memcached> public method add ] {

          - Parameters [3] {
            Parameter #0 [ <required> $key ]
            Parameter #1 [ <required> $value ]
            Parameter #2 [ <optional> $expiration ]
          }
        }

        Method [ <internal:memcached> public method addByKey ] {

          - Parameters [4] {
            Parameter #0 [ <required> $server_key ]
            Parameter #1 [ <required> $key ]
            Parameter #2 [ <required> $value ]
            Parameter #3 [ <optional> $expiration ]
          }
        }

        Method [ <internal:memcached> public method append ] {

          - Parameters [2] {
            Parameter #0 [ <required> $key ]
            Parameter #1 [ <required> $value ]
          }
        }

        Method [ <internal:memcached> public method appendByKey ] {

          - Parameters [3] {
            Parameter #0 [ <required> $server_key ]
            Parameter #1 [ <required> $key ]
            Parameter #2 [ <required> $value ]
          }
        }

        Method [ <internal:memcached> public method prepend ] {

          - Parameters [2] {
            Parameter #0 [ <required> $key ]
            Parameter #1 [ <required> $value ]
          }
        }

        Method [ <internal:memcached> public method prependByKey ] {

          - Parameters [3] {
            Parameter #0 [ <required> $server_key ]
            Parameter #1 [ <required> $key ]
            Parameter #2 [ <required> $value ]
          }
        }

        Method [ <internal:memcached> public method replace ] {

          - Parameters [3] {
            Parameter #0 [ <required> $key ]
            Parameter #1 [ <required> $value ]
            Parameter #2 [ <optional> $expiration ]
          }
        }

        Method [ <internal:memcached> public method replaceByKey ] {

          - Parameters [4] {
            Parameter #0 [ <required> $server_key ]
            Parameter #1 [ <required> $key ]
            Parameter #2 [ <required> $value ]
            Parameter #3 [ <optional> $expiration ]
          }
        }

        Method [ <internal:memcached> public method delete ] {

          - Parameters [2] {
            Parameter #0 [ <required> $key ]
            Parameter #1 [ <optional> $time ]
          }
        }

        Method [ <internal:memcached> public method deleteMulti ] {

          - Parameters [2] {
            Parameter #0 [ <required> $keys ]
            Parameter #1 [ <optional> $time ]
          }
        }

        Method [ <internal:memcached> public method deleteByKey ] {

          - Parameters [3] {
            Parameter #0 [ <required> $server_key ]
            Parameter #1 [ <required> $key ]
            Parameter #2 [ <optional> $time ]
          }
        }

        Method [ <internal:memcached> public method deleteMultiByKey ] {

          - Parameters [3] {
            Parameter #0 [ <required> $server_key ]
            Parameter #1 [ <required> $keys ]
            Parameter #2 [ <optional> $time ]
          }
        }

        Method [ <internal:memcached> public method increment ] {

          - Parameters [4] {
            Parameter #0 [ <required> $key ]
            Parameter #1 [ <optional> $offset ]
            Parameter #2 [ <optional> $initial_value ]
            Parameter #3 [ <optional> $expiry ]
          }
        }

        Method [ <internal:memcached> public method decrement ] {

          - Parameters [4] {
            Parameter #0 [ <required> $key ]
            Parameter #1 [ <optional> $offset ]
            Parameter #2 [ <optional> $initial_value ]
            Parameter #3 [ <optional> $expiry ]
          }
        }

        Method [ <internal:memcached> public method incrementByKey ] {

          - Parameters [5] {
            Parameter #0 [ <required> $server_key ]
            Parameter #1 [ <required> $key ]
            Parameter #2 [ <optional> $offset ]
            Parameter #3 [ <optional> $initial_value ]
            Parameter #4 [ <optional> $expiry ]
          }
        }

        Method [ <internal:memcached> public method decrementByKey ] {

          - Parameters [5] {
            Parameter #0 [ <required> $server_key ]
            Parameter #1 [ <required> $key ]
            Parameter #2 [ <optional> $offset ]
            Parameter #3 [ <optional> $initial_value ]
            Parameter #4 [ <optional> $expiry ]
          }
        }

        Method [ <internal:memcached> public method addServer ] {

          - Parameters [3] {
            Parameter #0 [ <required> $host ]
            Parameter #1 [ <required> $port ]
            Parameter #2 [ <optional> $weight ]
          }
        }

        Method [ <internal:memcached> public method addServers ] {

          - Parameters [1] {
            Parameter #0 [ <required> array $servers ]
          }
        }

        Method [ <internal:memcached> public method getServerList ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:memcached> public method getServerByKey ] {

          - Parameters [1] {
            Parameter #0 [ <required> $server_key ]
          }
        }

        Method [ <internal:memcached> public method resetServerList ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:memcached> public method quit ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:memcached> public method flushBuffers ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:memcached> public method getLastErrorMessage ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:memcached> public method getLastErrorCode ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:memcached> public method getLastErrorErrno ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:memcached> public method getLastDisconnectedServer ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:memcached> public method getStats ] {

          - Parameters [1] {
            Parameter #0 [ <optional> $type ]
          }
        }

        Method [ <internal:memcached> public method getVersion ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:memcached> public method getAllKeys ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:memcached> public method flush ] {

          - Parameters [1] {
            Parameter #0 [ <optional> $delay ]
          }
        }

        Method [ <internal:memcached> public method getOption ] {

          - Parameters [1] {
            Parameter #0 [ <required> $option ]
          }
        }

        Method [ <internal:memcached> public method setOption ] {

          - Parameters [2] {
            Parameter #0 [ <required> $option ]
            Parameter #1 [ <required> $value ]
          }
        }

        Method [ <internal:memcached> public method setOptions ] {

          - Parameters [1] {
            Parameter #0 [ <required> $options ]
          }
        }

        Method [ <internal:memcached> public method setBucket ] {

          - Parameters [3] {
            Parameter #0 [ <required> $host_map ]
            Parameter #1 [ <required> $forward_map ]
            Parameter #2 [ <required> $replicas ]
          }
        }

        Method [ <internal:memcached> public method setSaslAuthData ] {

          - Parameters [2] {
            Parameter #0 [ <required> $username ]
            Parameter #1 [ <required> $password ]
          }
        }

        Method [ <internal:memcached> public method setEncodingKey ] {

          - Parameters [1] {
            Parameter #0 [ <required> $key ]
          }
        }

        Method [ <internal:memcached> public method isPersistent ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:memcached> public method isPristine ] {

          - Parameters [0] {
          }
        }
      }
    }

    Class [ <internal:memcached> class MemcachedServer ] {

      - Constants [0] {
      }

      - Static properties [0] {
      }

      - Static methods [0] {
      }

      - Properties [0] {
      }

      - Methods [2] {
        Method [ <internal:memcached> public method run ] {
        }

        Method [ <internal:memcached> public method on ] {
        }
      }
    }

    Class [ <internal:memcached> class MemcachedException extends RuntimeException implements Throwable ] {

      - Constants [0] {
      }

      - Static properties [0] {
      }

      - Static methods [0] {
      }

      - Properties [4] {
        Property [ <default> protected $message ]
        Property [ <default> protected $code ]
        Property [ <default> protected $file ]
        Property [ <default> protected $line ]
      }

      - Methods [10] {
        Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {

          - Parameters [3] {
            Parameter #0 [ <optional> $message ]
            Parameter #1 [ <optional> $code ]
            Parameter #2 [ <optional> $previous ]
          }
        }

        Method [ <internal:Core, inherits Exception> public method __wakeup ] {
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] {
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] {
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] {
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] {
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] {
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] {
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] {
        }

        Method [ <internal:Core, inherits Exception, prototype Throwable> public method __toString ] {
        }
      }
    }
  }
}