forked from JeffreySu/WeiXinMPSDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.config
41 lines (40 loc) · 2.04 KB
/
app.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="membase" type="Membase.Configuration.MembaseClientSection, Membase" />
</configSections>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-1.5.2.14234" newVersion="1.5.2.14234" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-13.0.0.0" newVersion="13.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Enyim.Caching" publicKeyToken="cec98615db04012e" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-2.11.0.0" newVersion="2.11.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
<membase>
<!--
Please read the documentation first:
http://github.com/enyim/EnyimMemcached/wiki/MembaseClient-configuration
Use this section as a template if you're connecting to Membase Servers.
Note: you must have the top-level membase section if you're using the parameterless constructor of MembaseClient.
-->
<servers bucket="enyim" bucketPassword="password" retryCount="2" retryTimeout="00:00:02">
<!--
Provide at least 2-3 urls from your cluster.
Usually you only need to change the host, except when connecting to older versions.
Membase uses port 8091, while the NorthScale Memcached Server (1.0.3) uses 8080
-->
<add uri="http://192.168.2.202:8091/pools/default" />
<add uri="http://192.168.2.200:8091/pools/default" />
</servers>
<!-- the client waits deadTmimeout time to reconnect to the pool when all the specified urls are down -->
<socketPool connectionTimeout="00:00:10" deadTimeout="00:00:10" />
</membase><startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.2" /></startup></configuration>