Scala 中 CouchDB 的简单对象检索
我是 Scala/CouchDB 新手,有一个简单的用例。我需要将一些 Scala 案例类实例存储到 CouchDB 中。实例中的数据“几乎”是静态的(更新仅在我的服务重新启动期间发生)。
我需要的只是:
- 将实例插入 CouchDB
- 从 CouchDB 获取实例
我正在尝试使用 Scouchdb (https:// github.com/debasishg/scouchdb)。
- 我可以使用 sjson 作为对象 序列化,但我希望 scouchdb 自己做。
- 我知道 关于 by_id(id) 和 get(id) 方法 检索,但我有点无法 弄清楚 - 似乎所有的例子都已经过时了
谁能给我一个简单的例子(如果存在)如何实现我的目标?
最后但并非最不重要的一点是,dispatch-couch 和 scouchdb 之间有什么关系吗?
谢谢
I'm Scala/CouchDB newbie with a simple use case. I need to store some Scala case class instances into the CouchDB. The data in the instances are "almost" static (update happens only during my service restart).
All I need is:
- Insert the instance to CouchDB
- Get the instance from CouchDB
I'm trying to use Scouchdb (https://github.com/debasishg/scouchdb).
- I can use sjson for object
serialization, but I would expect
scouchdb to do it on its own. - I know
about by_id(id) and get(id) method for
retrieval, but I'm kinda not able to
figure it out - it seems all examples are out of date
Can anyone give me simple example (if such exists) how to achieve my goal?
And last but not least, is there any relation between dispatch-couch and scouchdb?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我需要的方法可以在 Db 类上找到
用于插入:
用于检索:
请参阅 https://github.com/debasishg/scouchdb/blob/master/src/main/scala/scouch/db/Database.scala
The methods I needed are found on Db class
For inserting:
For retrieval there is:
See https://github.com/debasishg/scouchdb/blob/master/src/main/scala/scouch/db/Database.scala