when you set a key,for example key is &#39;key1&#39;<br>you will send a command &#39;set&nbsp; key1 0 0 1&#39; to the server and server will use space as separator,<br>if your key is &#39;key 1&#39;,<br>the command will be &#39;set key 1 0 0 1&#39;,
<br>that would cause an error<br><br><div><span class="gmail_quote">2007/8/29, <a href="mailto:jacques.ales@bnpparibas.com">jacques.ales@bnpparibas.com</a> &lt;<a href="mailto:jacques.ales@bnpparibas.com">jacques.ales@bnpparibas.com
</a>&gt;:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<br><font face="sans-serif" size="2">I don&#39;t understand why space is considered
as a control char,</font>
<br><font face="sans-serif" size="2">while and del is not considered so.</font>
<br>
<br>
<br>
<br>
<br>
<br><font face="Tahoma" size="6"><b>I</b></font><font face="Tahoma" size="5">nternet</font>
<br><font face="sans-serif" size="1">philipn@gmail.com@<a href="http://lists.danga.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">lists.danga.com</a> -
08/28/2007 06:13 PM</font>
<br><font face="sans-serif" size="1">&nbsp;</font>
<p><font color="#800080" face="sans-serif" size="1">Sent by: &nbsp; &nbsp;
&nbsp; &nbsp;<a href="mailto:memcached-bounces@lists.danga.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">memcached-bounces@lists.danga.com</a></font>
</p><p>
</p><p><font color="#800080" face="sans-serif" size="1">To: &nbsp; &nbsp; &nbsp;
&nbsp;</font><font face="sans-serif" size="1">memcached</font>
</p><p><font color="#800080" face="sans-serif" size="1">cc: &nbsp; &nbsp; &nbsp;
&nbsp;</font>
</p><p><font color="#800080" face="sans-serif" size="1">Subject: &nbsp; &nbsp;
&nbsp; &nbsp;</font><font face="sans-serif" size="1"><b>Re: check_key</b></font>
</p><div><span class="e" id="q_114ad4925e30bdd4_1"><br>
<br><font size="2"><tt>&gt;&gt;&gt; c = &#39;hi there&#39;<br>
&gt;&gt;&gt; space = c[2]<br>
&gt;&gt;&gt; ord(space)<br>
32<br>
<br>
The memcached protocol spec says no control chars. &nbsp;ord(c) &lt; 33
does that.<br>
<br>
That is the latest version of the client. &nbsp;You can grab new releases<br>
here: <a href="http://www.tummy.com/Community/software/python-memcached/" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">http://www.tummy.com/Community/software/python-memcached/</a><br>
<br>
--Philip Neustrom<br>
<br>
On 8/28/07, <a href="mailto:jacques.ales@bnpparibas.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">jacques.ales@bnpparibas.com</a> &lt;<a href="mailto:jacques.ales@bnpparibas.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
jacques.ales@bnpparibas.com</a>&gt;
wrote:<br>
&gt;<br>
&gt; hello<br>
&gt;<br>
&gt; I&#39;m using the python wrapper for memcached in it&#39;s version<br>
&gt; __author__ &nbsp; &nbsp;= &quot;Evan Martin &lt;<a href="mailto:martine@danga.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">martine@danga.com</a>&gt;&quot;<br>
&gt; __version__ = &quot;1.36&quot;<br>
&gt; __copyright__ = &quot;Copyright (C) 2003 Danga Interactive&quot;<br>
&gt; __license__ &nbsp; = &quot;Python&quot;<br>
&gt;<br>
&gt; I can&#39;t figure out if this is the latest since the verion available
in the<br>
&gt; svn repository is<br>
&gt; <a href="http://code.sixapart.com/svn/memcached/trunk/api/python/memcache.py" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">http://code.sixapart.com/svn/memcached/trunk/api/python/memcache.py
</a><br>
&gt; __author__ &nbsp; &nbsp;= &quot;Evan Martin &lt;<a href="mailto:martine@danga.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">martine@danga.com</a>&gt;&quot;<br>
&gt; &nbsp;__version__ &nbsp; = &quot;1.2&quot;<br>
&gt; &nbsp;__copyright__ = &quot;Copyright (C) 2003 Danga Interactive&quot;<br>
&gt; &nbsp;__license__ &nbsp; = &quot;Python&quot;<br>
&gt;<br>
&gt;<br>
&gt; anyway, my concern is that version 1.36 checks key validity with the<br>
&gt; followinf function, that excludes spaces char (ascii32)<br>
&gt; as being &#39;control characters&#39;.<br>
&gt;<br>
&gt; I was wondering is this is correct.<br>
&gt; and also wondering why other chars as DEL(ascii127) are not excluded<br>
&gt;<br>
&gt; thanks for your clues<br>
&gt;<br>
&gt; jacques<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; def check_key(key, key_extra_len=0):<br>
&gt; &nbsp; &nbsp; &quot;&quot;&quot;Checks sanity of key. &nbsp;Fails
if:<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; Key length is &gt; SERVER_MAX_KEY_LENGTH
(Raises MemcachedKeyLength).<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; Contains control characters &nbsp;(Raises
MemcachedKeyCharacterError).<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; Is not a string (Raises MemcachedStringEncodingError)<br>
&gt; &nbsp; &nbsp; &quot;&quot;&quot;<br>
&gt; &nbsp; &nbsp; if not isinstance(key, str):<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; raise Client.MemcachedStringEncodingError,
(&quot;Keys<br>
&gt; must be str()&#39;s, not&quot;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;unicode.
&nbsp;Convert your unicode strings using &quot;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;mystring.encode(charset)!&quot;)<br>
&gt;<br>
&gt; &nbsp; &nbsp; if isinstance(key, basestring):<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; if len(key) + key_extra_len &gt; SERVER_MAX_KEY_LENGTH:<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;raise Client.MemcachedKeyLengthError,
(&quot;Key length is &gt; %s&quot;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp;% SERVER_MAX_KEY_LENGTH)<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; for char in key:<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if ord(char) &lt; 33:<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; raise Client.MemcachedKeyCharacterError,<br>
&gt; &quot;Control characters not allowed&quot;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; This message and any attachments (the &quot;message&quot;) is intended
solely for the<br>
&gt; addressees and is confidential.<br>
&gt; If you receive this message in error, please delete it and immediately<br>
&gt; notify the sender. Any use not in accord with<br>
&gt; its purpose, any dissemination or disclosure, either whole or partial,
is<br>
&gt; prohibited except formal approval.<br>
&gt; The internet can not guarantee the integrity of this message.<br>
&gt; BNP PARIBAS (and its subsidiaries) shall (will) not therefore be liable
for<br>
&gt; the message if modified.<br>
&gt; Do not print this message unless it is necessary, consider the environment.<br>
&gt; &nbsp;---------------------------------------------<br>
&gt; Ce message et toutes les pieces jointes (ci-apres le &quot;message&quot;)
sont etablis<br>
&gt; a l&#39;intention exclusive de ses destinataires et sont confidentiels.
Si vous<br>
&gt; recevez ce<br>
&gt; message par erreur, merci de le detruire et d&#39;en avertir immediatement<br>
&gt; l&#39;expediteur.<br>
&gt; Toute utilisation de ce message non conforme a sa destination, toute<br>
&gt; diffusion ou toute publication, totale ou partielle, est interdite,
sauf<br>
&gt; autorisation expresse.<br>
&gt; L&#39;internet ne permettant pas d&#39;assurer l&#39;integrite de ce message,
BNP<br>
&gt; PARIBAS (et ses filiales) decline(nt) toute responsabilite au titre
de ce<br>
&gt; message, dans l&#39;hypothese ou il aurait ete modifie.<br>
&gt; N&#39;imprimez ce message que si necessaire, pensez a l&#39;environnement.<br>
&gt;<br>
&gt;<br>
</tt></font>
<br></span></div><p></p><p></p><p></p><p></p><p></p></blockquote></div><br>