在.net中使用aquiles访问Cassandra(一)_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > 在.net中使用aquiles访问Cassandra(一)

在.net中使用aquiles访问Cassandra(一)

 2013/7/25 10:43:28  amwicfai  博客园  我要评论(0)
  • 摘要:aquiles是.net下基于Thrift协议访问Cassandra的第三方类库,官方地址是:http://aquiles.codeplex.com/1.下载类库文件:http://aquiles.codeplex.com/releases2.添加引用Aquiles.Core.dllAquiles.Cassandra10.dllThrift.dll3.添加配置文件<?xmlversion="1.0"encoding="utf-8"?><configuration><
  • 标签:.net 使用 net Cassandra
aquiles是.net下基于Thrift协议访问Cassandra的第三方类库,官方地址是: http://aquiles.codeplex.com/   1.下载类库文件: http://aquiles.codeplex.com/releases   2.添加引用 Aquiles.Core.dll Aquiles.Cassandra10.dll Thrift.dll   3.添加配置文件
<?xml version="1.0" encoding="utf-8" ?>
<configuration>

  <configSections>
    <section name="aquilesConfiguration" type="Aquiles.Core.Configuration.AquilesConfigurationSection,Aquiles.Core"/>
  </configSections>

  <aquilesConfiguration>
    <clusters>
      <add friendlyName="Test_Cluster">
        <connection poolType="SIZECONTROLLEDPOOL" factoryType="FRAMED">
        </connection>
        <endpointManager type="ROUNDROBIN" defaultTimeout="6000">
          <cassandraEndpoints>
            <add address="*.*.*.*" port="9160"/>
            <add address="*.*.*.*" port="9160"/>
            <add address="*.*.*.*" port="9160"/>
          </cassandraEndpoints>
        </endpointManager>
      </add>
    </clusters>
  </aquilesConfiguration>

  <startup>
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
  </startup>

</configuration>

 

发表评论
用户名: 匿名