You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
2.0 KiB
42 lines
2.0 KiB
2 years ago
|
<?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.8"/></startup></configuration>
|