| bio | website | xeraa.net |
|---|---|---|
| location | Vienna, Austria | |
| age | 28 | |
| visits | member for | 2 years, 4 months |
| seen | 7 hours ago | |
| stats | profile views | 94 |
Author of "SilverStripe 2.4 Module Extension, Themes, and Widgets: Beginner's Guide"(http://www.amazon.com/SilverStripe-Module-Extension-Themes-Widgets/dp/184951500X)
For more details see http://xeraa.net
|
1d |
answered | Silverstripe - google picks links on members only page |
|
May 22 |
revised |
Cloudfoundry: Deploying a standalone application using Spring and RabbitMQ fixed a typo in the title |
|
May 22 |
suggested | suggested edit on Cloudfoundry: Deploying a standalone application using Spring and RabbitMQ |
|
May 20 |
revised |
Mongodb update several documents with different values Fixed a typo in the title |
|
May 20 |
suggested | suggested edit on Mongodb update several documents with different values |
|
May 16 |
comment |
Removing DBRef from document Cascading as in relational databases: A row in table X has a foreign key relationship to a row in table Y. If the FK is set with on delete cascade, deleting the row in table X will also delete the referenced key in Y. This concept does not exist in MongoDB with DBRefs, which are basically a convention for FKs implemented by most drivers |
|
May 11 |
comment |
silverstripe - file permissions for assets folder Good point, I've added the 755 part. Thanks! |
|
May 11 |
revised |
silverstripe - file permissions for assets folder added 19 characters in body |
|
May 8 |
awarded | Unsung Hero |
|
May 8 |
answered | silverstripe - file permissions for assets folder |
|
Apr 29 |
comment |
Removing DBRef from document It should be doable since Morphia knows where each entity is being referenced and could then try to find such "loose" ends. However, this adds quite some overhead for entities which are being referenced often and it would need a lot of testing to avoid any nasty bugs. You might want to raise an issue at github.com/jmkgreen/morphia/issues to push this further... |
|
Apr 29 |
comment |
Removing DBRef from document Good. I've added the comment as an answer. Feel free to update the question if you run into any other issues. As soon as the remove works in Java, the MongoDB save should do what you want. |
|
Apr 29 |
answered | Removing DBRef from document |
|
Apr 29 |
comment |
Removing DBRef from document There is no cascading delete. So you need to manually remove the reference from the list / collection. Using list.remove(xxx) and datastore.save(entity) should work in general. Can you debug the code in your IDE and check if the Java code really removes the student reference? |
|
Apr 28 |
comment |
Full text search for LIKE “%term%” If you're using regular expressions for a small dataset it's probably fine. However, regex doesn't use indexes so it's both slow and expensive and should not be used on big datasets in production. |
|
Apr 28 |
answered | unique key indexing for multiple columns in mongodb using morphia |
|
Apr 28 |
answered | High Availability In MongoDB |
|
Apr 26 |
comment |
Removing DBRef from document Why doesn't save(group) work? 1) Is the student still in the list afterwards? 2) Are you sure your remove(student) works as expected? |
|
Apr 26 |
comment |
unique key indexing for multiple columns in mongodb using morphia Are you sure the spaces in your attribute names phone no and door No are ok? If you haven't rewritten the names via @Property("xxx") they need to be the same as your Java class members. The @Indexes(...) should be fine otherwise. And what specifically is the problem of "it doesn't seem to work"? |
|
Apr 26 |
answered | MongoDb casscade update/delete |