需要Groovy Couchbase帮助

时间:2016-04-21 00:14:22

标签: groovy couchbase

我是Groovy和Couchbase的初学者。使用Groovy-console编写一些基本的Groovy脚本。使用带有UI的couchbase控制台工具来插入couchbase上的文档。现在我想把它们结合起来。我想使用Groovy脚本插入couchbase中的文档。

我在哪里可以找到合适的教程?或者Groovy-couchbase连接和操作的示例代码也会有很多帮助。

(我在谷歌搜索中找不到,所以不得不求助于stackoverflow的专家)

非常感谢你! : - )

1 个答案:

答案 0 :(得分:1)

您只需要Java客户端。

@Grab('com.couchbase.client:java-client:2.2.6')

import com.couchbase.client.java.CouchbaseCluster

// Connect to localhost 
def cluster = CouchbaseCluster.create()

// Open the default bucket and the "beer-sample" one 
def defaultBucket = cluster.openBucket()
def beerSampleBucket = cluster.openBucket("beer-sample")

// Disconnect and clear all allocated resources 
cluster.disconnect()

Java客户端文档位于:http://developer.couchbase.com/documentation/server/4.0/sdks/java-2.2/java-intro.html