Giter Club home page Giter Club logo

Comments (5)

jliszka avatar jliszka commented on September 4, 2024

I'm relying on com.mongodb.DBObject.toString to produce the string, and
that's how it renders ObjectIds, which is unfortunately not the same way
the mongo repl expects them. I could probably do a regex replace on the
.toString output, I but haven't gotten to it.

On Tue, Feb 18, 2014 at 9:16 PM, Erik Allik [email protected]:

I have this Rogue query code:

val q = Job.where(_._id eqs search)

q.toString returns this db.jobs.find({ "_id" : { "$oid" :
"52f064dcef86abdf52155300"}})

Trying that on Mongo shell:

db.jobs.find({ "_id" : { "$oid" : "52f064dcef86abdf52155300"}})
error: { "$err" : "invalid operator: $oid", "code" : 10068 }

(it should really be db.jobs.find({ "_id" :
ObjectId("52f064dcef86abdf52155300")}).)

fetch-ing the query works fine, but sometimes for debugging it's good to
get the raw query.

I tried to understand how the query is built prior to being executed but
ExecutableQuery/QueryExecutor/LiftQueryExecutor/etc is just too
complicated to understand in less than a couple of ours with no prior
familiarity...

Reply to this email directly or view it on GitHubhttps://github.com//issues/99
.

from rogue.

erikkaplun avatar erikkaplun commented on September 4, 2024

Does the underlying mechanism that sends the query to Mongo do the serialization properly? or it's using some other means, or means that cannot be easily accessed?

from rogue.

jliszka avatar jliszka commented on September 4, 2024

Yes, rogue uses the mongo java driver to send queries to mongo using the mongo wire format. DBObject is the native object format supported by the mongo java driver. It just happens to have a weird .toString.

On Feb 19, 2014, at 9:47 PM, Erik Allik [email protected] wrote:

Does the underlying mechanism that sends the query to Mongo do the serialization properly? or it's using some other means, or means that cannot be easily accessed?


Reply to this email directly or view it on GitHub.

from rogue.

erikkaplun avatar erikkaplun commented on September 4, 2024

Got it—that's probably why I wasn't able to find anything meaningful in the code that does the execution/fetching...

from rogue.

jliszka avatar jliszka commented on September 4, 2024

fixed in 2.4.0

from rogue.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.