Casbah integrates a Scala toolkit layer on top of the official MongoDB Java driver.

learn more… | top users | synonyms

0
votes
0answers
15 views

Compilation error on MongoDB Casbah for Scala

I am wrting an update query on Scala and Cashbah. When I write this... val query = MongoDBObject({"_id" -> uri.toString}) val update: DBObject = $set("uDate" -> new DateTime) ++ ...
0
votes
1answer
42 views

Programmatically enable sharding + choosing shard key on a collection using casbah with Mongo 2.4

I am attempting to programmatically "enable sharding" and set the "shard key" using java/scala API particularly casbah Our config scala 2.10 casbah 2.6 - "org.mongodb" % "casbah_2.10" % "2.6.0", ...
0
votes
1answer
39 views

Doing a MongoDB findAndModify query including $addToSet in Casbah

I am both new to scala and cashbah. I am trying to update a document if exists (by _id) and create if doesn't exist. while updating, update some key values while updating, update some keys which ...
0
votes
1answer
31 views

Attaching casbah source in eclipse

I am having trouble attaching the source for the mongodb casbah library in eclipse. I couldn't find a source jar anywhere, so I downloaded the source from github, but I didn't know what the ...
0
votes
1answer
32 views

Serving files from GridFS with casbah/salat

I would like to store images uploaded as user content in GridFS in a Scala Play 2 application. How can I restore the binary file from the GridFSDBFile that GridFS.findOne gives me?
0
votes
1answer
46 views

runcommand is not a memeber of casbah mongocolection

db.foo.insert( { _id: 1 , desc: "the dog is running" } ) db.foo.insert( { _id: 2 , desc: "the cat is walking" } ) db.foo.ensureIndex( { "desc": "text" } ) db.foo.runCommand( "text", { search : "walk" ...
2
votes
1answer
85 views

How to access binary data in mongoDB from scala (casbah)

I am new to mongoDB, so this may be a really stupid question... I am trying to access a rails mongo session store from scala. val sessions = MongoConnection("localhost", ...
0
votes
0answers
18 views

Composite ID with mongoDB java Driver [duplicate]

I have a java object which I need to save in mongoDB and the identifier in mongoDB is typically a complex one, with two fields: _id.valueA and _id.valueB . However, my data structure is flat with ...
1
vote
1answer
178 views

Scala app exceeds Heroku memory quota

I am hosting the backend for my mobile application on Heroku. It's written in Scala using Scalatra to expose the REST API. In addition to that, I'm running a worker that fetches data and pushes it to ...
0
votes
0answers
49 views

How insert or get on duplicate key in MongoDB?

I have a field in a collection that has a unique index. What I would like to do is insert a new document into the collection but if the unique constraint fails then return the document that caused the ...
0
votes
1answer
59 views

Scala, Casbah: MongoCollection.insert compilation errors

I am trying to write function that writes data to MongoDB using Casbah toolkit: import com.mongodb.casbah.WriteConcern import ... def saveRecord(rec: MongoDBObject) { ...
1
vote
1answer
69 views

Play2 + Casbah: How to provide an implicit Writes for ObjectId

there is a simple model class that contains some database ids. It looks like this: case class Post(id: ObjectId, owner: Option[ObjectId], title: String) object Post { implicit val ...
0
votes
1answer
83 views

Scala, Casbah: Compilation errors. How to instatiate object from external libary?

I am trying to write function that writes data to MongoDB using Casbah toolkit: import com.mongodb.casbah.WriteConcern import ... def saveRecord(rec: MongoDBObject) { ...
0
votes
1answer
450 views

Scala: Example of using Casbah to write / update / delete objects in MongoDB?

Can not find any description in Casbah tutorial (http://mongodb.github.com/casbah/tutorial.html) how to write / update / delete objects in MongoDB. Please, help with examples or tell what classes to ...
0
votes
1answer
145 views

Casbah MongoDB toolkit for Scala: can't create connection and collection

I am trying to work with Casbah MongoDB toolkit for Scala. I am running MongoDB on localhost, it works fine. Yet the following code does nothing - no database and no collection get created.And no ...
0
votes
1answer
84 views

Scala fluid syntax with Casbah toolkit for MongoDB

I am new to Scala and trying to use Casbah toolkit for MongoDb. Casbah tutorial says: "...This should allow a more fluid Syntax to working with Mongo. The DB object also provides an apply() for ...
0
votes
1answer
76 views

Casbah Maven dependency FAILS in Eclipse Scala-IDE?

I am trying to use Casbah - Scala toolkit for MonfoDB in Eclipse Scala-IDE Maven project. Maven fails at Casbah dependency with the following errors: Missing artifact ...
0
votes
3answers
99 views

MongoDB+Scala: Accessing deep nested data

I think there should be an easy solution around, but I wasn't able to find it. I start accessing data from MongoDB with the following in Scala: val search = MongoDBObject("_id" -> new ...
0
votes
1answer
107 views

Scala, Casbah - How to convert List to MongoDBList?

Is there an easy way to turn List into MongoDBList(or BasicDBList) ?
0
votes
1answer
116 views

How to convert MongoDBList to BasicDBList?

I use Casbah 2.5.0. There is example in tutorial: scala> val builder = MongoDBList.newBuilder scala> builder += "foo" scala> builder += "bar" scala> builder += "x" scala> builder += ...
1
vote
1answer
173 views

Howto test Custom Json Objects with Spray Routing

I'm creating a Rest API with spray-routing on top of mongodb for some CRUD operations, this all works fine, expect whenever I try to test it with specs2 the following specification class ...
0
votes
1answer
94 views

mongodb querying regex with casbah fluid syntax

I am having an issue with querying against a regex with fluid dsl syntax, i am trying to say something like ("id" -> foo) using fluid. foo is a regex, so there is no $elemMatch on regex so I am ...
1
vote
3answers
167 views

Scala and Casbah - error: Option[com.mongodb.DBObject] does not take parameters

I'm trying to fetch doc and get it's attribute. When I use findOne method, I expect to get MongoDBObject, but I receive Option[com.mongodb.DBObject]. How to get an attribute from it? Is it possible to ...
0
votes
1answer
124 views

How to specify salat DAO model for nested list of mixed type?

I have data coming back from MongoDB that looks like this: > db.foo.findOne() [ { "_id" : "some string", "bar" : [ [ 14960265, ...
1
vote
1answer
197 views

Multiple documents update mongodb casbah scala

I have two MongoDB collections promo collection: { "_id" : ObjectId("5115bedc195dcf55d8740f1e"), "curr" : "USD", "desc" : "durable bags.", "endDt" : "2012-08-29T16:04:34-04:00", ...
0
votes
1answer
93 views

MongoDB Insert Behavior with Casbah and Scala

I'm using casbah in Scala to do inserts into MongoDB and not understanding some behavior I'm seeing. val wr = dao.collection.insert(myRecord, dao.defaultWriteConcern) val error = ...
0
votes
1answer
96 views

nested pull with scala mongodb casbah

lets say i have a simple object { "id":"xyz" "answers" : [{ "name" : "Yes", }, { "name" : "No", }] } I want to remove answer Yes from the array I'm trying something like this ...
3
votes
1answer
142 views

Retrieve documents having array containing another document attribute

I am storing some kind of filesystem in Mongo, where directories are named categories. The category JSON looks like: { "name":"CategoryChildLevel2", "parentId":"2", ...
0
votes
1answer
313 views

Upsert with increment of embedded object value in MongoDB / Casbah / Scala /

I need to increment the count of an embedded object's value for a property, or create the object property if it doesn't exist, or create the entire record if there isn't one, using Casbah for MongoDB ...
0
votes
0answers
35 views

Illegal modifiers in scalatest

I am trying to run a scala test, and part of my library dependencies for an application includes some casbah libraries. If I include casbah-commons on my classpath, scalatest exits with the following ...
3
votes
1answer
249 views

Mongo $elemMatch in Casbah

I'm using Casbah 2.9.2 My mongodb schema looks like: [ _id : "Triangle", Info : [ Color : "Red", Line : "Thin", UseID : "1", SourceId : "2" ] ] I want to be able to write an update line that first ...
34
votes
2answers
1k views

Why do I end up with java.lang.IllegalArgumentException for Casbah / Java MongoDB Driver?

I'm seeing a strange issue using the casbah / java driver. I keep running into the following exception when the driver tries to create a response from mongo: Oct 16, 2012 10:45:07 AM ...
0
votes
4answers
472 views

How to update object in Mongo with an immutable Salat case class

I'm working on a project with Scala, Salat, Casbah, Mongo, Play2, BackboneJS... But it's quite a lot of new things to learn in the same time... I'm ok with Scala but I find my code crappy and I don't ...
1
vote
1answer
201 views

Pre-persistence validation for Scala case class using Salat/Casbah

Assuming that I have a Scala case class that is persisted using the Salat/Casbah/Mongo stack, I want to set up pre-persistence validation logic like I could easily do in Rails using ActiveRecord hooks ...
0
votes
2answers
267 views

Casbah: How to Update and Embedded Object When Field Names Have Spaces?

Supposing I had the following document in a database: {"_id":"test", "with space":{"a name":1}} How can I write a $set query in Casbah to update "with space"."a name" to 2? I was thinking ...
0
votes
1answer
325 views

Reading file contents with casbah gridfs throws MalformedInputException

Consider the following sample code: it writes a file to mongodb and then tries to reread it import com.mongodb.casbah.Imports._ import com.mongodb.casbah.gridfs.Imports._ object TestGridFS{ def ...
2
votes
1answer
129 views

Is there a more idiomatic way to use Casbah to check a password?

I have the following code: def authenticateByUsername(username: String, password:String): Boolean = { val user = users.findOne(MongoDBObject(USERNAME -> username)) if(user.isDefined){ ...
4
votes
1answer
1k views

How to clear/drop/empty a MongoDb collection with Casbah

I started using MongoDb in Scala via Casbah but cannot find on the Casbah documentation / google the way to drop the content of a collection. The MongoDd doc says the MongoDb shell command to do so is ...
3
votes
3answers
599 views

Still can't run multiple tests against play FakeApp with Salat / Casbah

I thought I had fixed the problem temporarily, but it turns out I am still having problems. I am trying to create some specs2 tests for my models layer, I would like to insert some dummy object, and ...
2
votes
0answers
141 views

Why in Salat does the value of grater[BigThing].asDBObject(v) has nested fields turned into Array's?

Here are the imports I am using: import com.novus.salat._ import com.novus.salat.global.ctx import net.liftweb.json._ import com.mongodb.casbah.Imports._ I have two case classes: case class ...
2
votes
3answers
1k views

How to convert casbah mongodb list to json in scala / play

I'm learning scala and mongodb at present and using the play! framework, so I'm making all sorts of mistakes as I get my head around things. Currently I have a scala object that returns a list of ...
1
vote
1answer
288 views

NoClassDefFoundError => ClassPath$JavaContext when using play start

I've made a little Scala, Play2.0.2 application. It works fine when i use play run command, but when i use play start or play clean compile stage + target/start, when trying to do a MongoDB insertion ...
3
votes
2answers
838 views

Error locating casbah on 'sbt compile'?

My directory structure: -build.sbt -src --main ---scala ----MongoConnect.scala -lib my build.sbt: name := "mongodb-experiments" version := "0.1" libraryDependencies ++= Seq( ...
1
vote
1answer
220 views

MongoDb. Extracting integer from database. java.lang.Integer cannot be cast to java.lang.String

I am new to MongoDb. I was trying to retreive data from the db. Here is part of my code: dbc(TABLENAME).find ( MongoDBObject (UID -> uid)).toList.foreach {s => val Rollno = ...
1
vote
3answers
253 views

casbah mongodb more typesafe way to access object parameters

In casbah, there are two methods called .getAs and .getAsOrElse in MongoDBObject, which returns the relevant fields' values in the type which given as the type parameter. val dbo:MongoDBObject = ... ...
2
votes
2answers
582 views

How to retrieve all objects in a Mongodb collection including the ids?

I'm using Casbah and Salat to create my own Mongodb dao and am implementing a getAll method like this: val dao: SalatDAO[T, ObjectId] def getAll(): List[T] = dao.find(ref = ...
6
votes
3answers
1k views

NoSQL (e.g. MongoDB) or RDMS (e.g. PostgreSQL) for new Scala project?

I'm developing a brand new project in Scala. It's just an application for a bunch of CRUD operations, however, because of some eccentric requirements, Play2 or Lift does not fit the bill, so I'm going ...
2
votes
1answer
476 views

Reading the results of a Casbah MongoDB query

I have a document in MongoDB that looks like this: {"_id":"asdf", "data":[ {"a":"1","b":"2"}, {"a":"3","b":"4"}, {"a":"5","b":"6"}, ]} I would like to query that object using Scala, ...
0
votes
1answer
197 views

Casbah - parametric find or findOne do not return what is there

I have the problem exactly as it is described in the title. For example, if I try: val key = "myKey" val value = "myVal" val one = Option(collection.findOne(MongoDBObject(key -> value))) ...
0
votes
2answers
189 views

incorrect JARs for Casbah in Scala?

import com.mongodb.casbah.Imports._ val newObj = MongoDBObject( "abc" -> 1, "def" -> 2 ) This gives me the following error: "class file needed by ValidDateOrNumericTypeHolder is missing. ...

1 2