couchbase-scala
This is a library for accessing Couchbase in Scala.
Using
couchbase-scala is published to maven center
- using typesafe config file application.conf to config couchbase connection url, buckets, timeout,..
# see class com.couchbase.client.java.env.DefaultCouchbaseEnvironment
com.couchbase.timeout {
connect=10s
}
com.sandinh.couchbase {
connectionString = "couchbase://dev.sandinh.com"
buckets {
# syntax: bucketName.password=".."
# we will use CBCluster.openBucket(bucketName) to retrieve a ScalaBucket object
acc.password=""
# we can also use the following verbose syntax to customize the real bucket name when connect to couchbase server
bk1 {
name = fodi
password=""
}
}
}
- load the config, instantiate a CBCluster instance, then open a bucket
val config = ConfigFactory.load()
val cluster = new CBCluster(config);
val accBucket = cluster.openBucket("acc");
Or, you can use DI (example google guice):
class CBModule extends AbstractModule {
override def configure(): Unit = {
bind(classOf[Config]).toInstance(ConfigFactory.load())
}
}
class MyClient @Inject() (cluster: CBCluster) {
val accBucket = cluster.openBucket("acc");
}
- access couchbase using ScalaBucket's api
val s = accBucket.get[StringDocument]("some_key").map(_.content)
val s = accBucket.getT[String]("some_key")
val s = accBucket.getOrElseT("some_key")("default value")
//see other methods (insert, replace, remove, touch, counter, append, unlock, getFromReplica, getAndLock,..)
//from ScalaBucket class
- you can use play-json to retrieve a JsValue directly
case class Acc(name: String, gender: Option[Boolean])
object Acc { implicit val fmt = Json.format[Acc] }
val name = accBucket.getJsT[Acc]("some_key").map(_.name)
Changelog
see CHANGES.md
Dev guide
- prepare couchbase for testing
docker run -d --name cb -p 8091-8094:8091-8094 -p 11210:11210 couchbase:5.0.1
docker cp travis-cb-prepare.sh cb:/tmp
docker exec -i cb /tmp/travis-cb-prepare.sh
or, if you have prepared before => only run docker start cb
test
publish guide
We use sd-devops so:
- Every push (or merge a PR) to
master
branch will be publish to sonatype snapshots (only if QA, test, compatible check pass) - If push tag match glob
v[0-9]*
, exv9.0.0
or evenv9bla.bla
then publish job will publish a release version to sonatype release repo (which will be sync to maven central) - !!!NOTE!!! You MUST tag version with v prefix or else it will not be published!
- You should never manually publish from your local machine unless
sbt publishLocal
- MUST update [CHANGES.md]!
Licence
This software is licensed under the Apache 2 license: http://www.apache.org/licenses/LICENSE-2.0
Copyright 2014-2021 Sân Đình (https://sandinh.com)