I&#39;m attempting to debug some issues in a production system; the system is on PHP 4.4 with the PECL Extension version 2.1.2.<div><br class="webkit-block-placeholder"></div><div>We are setting keys for customers of the type: statistic_&lt;customer_id&gt;_&lt;sub_id&gt; within our PHP application.
</div><div><br class="webkit-block-placeholder"></div><div>In some cases a customer doesn&#39;t have a sub_id, and we set the key as statistic_&lt;customer_id&gt;_</div><div><br class="webkit-block-placeholder"></div><div>
I am able to reliably access these numbers from PHP (They are just integers: they are incremented using the builtin incr method in memcache); however, when I try either of the Python libraries (pure Python and C binding implementations) in certain cases I can&#39;t get an object for statistic_ ; it seems to mostly be in cases when there&#39;s no sub id but I do see it sometimes when there is.
</div><div><br class="webkit-block-placeholder"></div><div>It&#39;s my understanding that the access should be the same across all languages, and as we&#39;re seeing some issues where sometimes dumping the data in memcache out to the database is not always returning the full numbers, I&#39;m wondering if there&#39;s a deeper issue.
</div><div><br class="webkit-block-placeholder"></div><div>Anyone got any thoughts or guidance for me?</div>