From 97bc67099cbd46ecd6a3e59e2cfe2dfcefe44121 Mon Sep 17 00:00:00 2001 From: Passakorn Suppakityothin Date: Wed, 31 Jan 2018 02:33:47 +0700 Subject: [PATCH] Add "namespace" attribute to options interface (#23280) --- types/memcached/index.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/types/memcached/index.d.ts b/types/memcached/index.d.ts index fffbb57c82..8e330fa88d 100644 --- a/types/memcached/index.d.ts +++ b/types/memcached/index.d.ts @@ -280,5 +280,9 @@ declare namespace Memcached { * 5000, the idle timeout for the connections. */ idle ?: number; + /** + * '', sentinel to prepend to all memcache keys for namespacing the entries. + */ + namespace ?: string; } }