Patch php_memcache.h for memcache Bug #63272
Patch version 2012-10-13 06:05 UTC
Return to Bug #63272 |
Download this patch
Patch Revisions:
Developer: stevenschow@yahoo.com
69,70c69,78
< #define MMC_SERIALIZED 1
< #define MMC_COMPRESSED 2
---
>
> #define MMC_SERIALIZED 1 /* memcache flag to indicate php serialized string */
> #define MMC_COMPRESSED 2 /* memcache flags value */
> /* These flags are set here to reserve the for use by users of the pecl-memcache in set and get */
> #define MMC_RESERVED_APPLICATIONDEFINEDFLAG_12 4096 /* not used in pecl-memcache code */
> #define MMC_RESERVED_APPLICATIONDEFINEDFLAG_13 8192 /* not used in pecl-memcache code */
> #define MMC_RESERVED_APPLICATIONDEFINEDFLAG_14 16384 /* not used in pecl-memcache code */
> #define MMC_RESERVED_APPLICATIONDEFINEDFLAG_15 32768 /* not used in pecl-memcache code */
>
>
|