Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

33
votes
11answers
8k views

Mongoid or MongoMapper?

I have tried MongoMapper and it is feature complete (offering almost all AR functionality) but i was not very happy with the performance when using large datasets. Has anyone compared with Mongoid? ...
10
votes
4answers
131 views

DBMS_DATA_MINING.CREATE_MODEL causes “ORA-40103: invalid case-id column: TID” on 11.2.0.1.0 64b, but on 10g OK

I have a problem with DBMS_DATA_MINING.CREATE_MODEL on version 11.2. On 10g this code below works OK, and I'm quite sure that on 11.1 it works too. CREATE OR REPLACE VIEW "SH"."ITEMS" AS SELECT ...
1
vote
2answers
77 views

Doctrine MongoDB ODM search in two or more fields

I would like to write a query in Doctrine Mongo ODM that searches by regex in two or more fields. In SQL it would look like: SELECT * FROM user WHERE name LIKE %search% OR surname LIKE %search%; I ...
1
vote
1answer
51 views

How do I create custom reference types in Doctrine ODM V1?

Is there any way to have a slightly custom reference (@ReferenceOne, @ReferenceMany) in Doctrine MongoDB ODM? For example, @ReferenceOneWithTs would keep a timestamp field to tell when the reference ...
1
vote
1answer
145 views

Doctrine 2 ODM MongoDB storing images in GridFS from memory

i want to store uploaded files in mongodb as GridFsFile. Im using the doctrine 2 odm. it works fine when i read a file from disk and store it. But what i would like to achieve is to avoid storing the ...
1
vote
0answers
37 views

I can't get sfMondongoPlugin to generate embeddeds fields

I'm working with the sfMondongoPlugin v1.0 https://github.com/mondongo/sfMondongoPlugin I can not get the embeds code to generate correctly. It generates embedded classes that inherit from the ...
0
votes
0answers
24 views

Query / Find a document by an Embedmany document's id in Doctrine ODM

....... ->createQueryBuilder( 'Model\Document\Post' ) ->field( 'comments.id' )->equals( $commentId ) .... Does not work, but when comments are ReferenceMany it works. Is such query not possible when ...
0
votes
1answer
85 views

Standalone Usage of Doctrine\ODM\MongoDB\Query\Builder

doeas anybody use the Query\Builder from Doctrine as Standalone Tool ? It seems like The Query Manager needs a defined Class of the requested Document in MongoDB. If you have a defined Class like: ...
0
votes
1answer
72 views

Doctrine 2 ORM and MongoDB ODM mapping on the same class

Is it possible to map the same class to both ORM and ODM using annotations? We are deciding what to use so we want to do some performance measurment and we also want to be able to switch the ...
0
votes
0answers
31 views

Runtime Error : odm_initialize runtime definition not found in AIX5.3

While runing the applciation on AIX5.3 with xlc_r I am getting the error odm_initialize runtime definition of the symbol not found odm_free_list runtime definition of the symbol not found ...
0
votes
0answers
44 views

How to group by in doctrineodm mongodb

I use doctrinodm in a project, I can't find how to use group by in querybuilder? The documentation does'nt explain anything. Please help.