j'ai un problème avec memcached de amazon, en fait j'ai crée un instance Ec2 windows et un Cache Clusters lie à un groupe de sécurité. à partir de ma machine je peux accéder a EC2 via l'outil windows connection à bureau distance.
mais j'arrive pas a écrir dans memcached amazon dans à partir de mon code suivant:

Dim client As New MemcachedClient()
'methode added Key,Value
Dim bit As Boolean = client.Store(Memcached.StoreMode.Add, "ValueKey", "ValueOfValue")
Dim bit1 As Boolean = client.Store(Memcached.StoreMode.Set, "ValueKey011", "ValueOfValue0001")
'Methode Get Value Key,Value
Dim ValueByValue As String = client.Get("ValueKey")

client.Remove("ValueKey")
fichier app.config:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="enyim.com">
<section name="memcached" type="Enyim.Caching.Configuration.MemcachedClientSection, Enyim.Caching" />
</sectionGroup>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<enyim.com>
<memcached>
<servers>
<!-- put your own server(s) here-->
<add address="Adressssssss01" port="11211" />
</servers>
<socketPool minPoolSize="100" maxPoolSize="1000" connectionTimeout="00:10:10" deadTimeout="00:02:00" />
</memcached>
</enyim.com>
</configuration>
la méthode client.Store retourne toujours false
merci pour votre retour