Status: New
Owner: ----
Labels: Type-Defect Priority-Medium

New issue 413 by arbind.s...@v2solutions.com: Using Library "Enyim.Caching.dll", Data is not stored in memcached
https://code.google.com/p/memcached/issues/detail?id=413

Configuration in Web.config

<sectionGroup name="enyim.com">
<section name="memcached" type="Enyim.Caching.Configuration.MemcachedClientSection, Enyim.Caching" />
</sectionGroup>

 <enyim.com>
    <memcached>
      <servers>
        <add address="::1" port="11211" />
        -->
  <!-- localhost -->
  <!--
        <add address="::1" port="11211" />
        -->
  <!-- localhost -->
  <!--
      </servers>
<socketPool minPoolSize="10" maxPoolSize="100" connectionTimeout="00:00:05" deadTimeout="00:02:00" />
    </memcached>
  </enyim.com>

Implementation in C# Code

MemcachedClient client = new MemcachedClient()

if(client.Get<string>("key") !=null)
{
  return "X";
}
else
{
  client.Store(StoreMode.set,"key","Test");
  return "Y"
}

When I debug the code It always goes to else condition.

Let me know if any points i have missed


Thanks
Arbind Singh



--
You received this message because this project is configured to send all issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--

--- You received this message because you are subscribed to the Google Groups "memcached" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to memcached+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to