Re: [hibernate-dev] [OGM] Ogm mass indexer, how to convert Tuple/EntityKey to Entity/Id?

2013-03-05 Thread Emmanuel Bernard
We might hope for a stable enough contract on Hibernate Search and hope that we won't break serializability between micro or minor versions. That will need to be taken into account in the test suite and design. On the OGM side though, we are not at that level of maturity and we will force homogenou

[hibernate-dev] cascading deletion issue

2013-03-05 Thread Teresa Batista Neto
Dear all, I'm trying to use cascading deletion but it doesn't seem to work. " If you can guarantee that no other object (or row in any other table) holds a reference to these bids, you can make the deletion transitive. Hibernate (and JPA) offer a cascading option for this purpose. You can enable

[hibernate-dev] Someone doing forum maintenance?

2013-03-05 Thread Sanne Grinovero
I'm getting this error when attempting to login to the forums: It was not possible to convert your password when updating this bulletin board’s software. Please request a new password. If you continue to have problems please contact the Board Administrator. Someone is working on it? Sanne _

Re: [hibernate-dev] Someone doing forum maintenance?

2013-03-05 Thread Gunnar Morling
I'm not. For what's it worth, I can log in without any problems. 2013/3/5 Sanne Grinovero > I'm getting this error when attempting to login to the forums: > > It was not possible to convert your password when updating this > bulletin board’s software. Please request a new password. If you > con

Re: [hibernate-dev] [OGM] Ogm mass indexer, how to convert Tuple/EntityKey to Entity/Id?

2013-03-05 Thread Emmanuel Bernard
I have implemented a solution that gives an entity based on a tuple. https://hibernate.onjira.com/browse/OGM-273#comment-50082 Note that it does not currently works for MongoDB, but that's waiting for the dedicated GridDialect method as well as OGM-151. Also note that I have no idea how that will

Re: [hibernate-dev] [OGM] Ogm mass indexer, how to convert Tuple/EntityKey to Entity/Id?

2013-03-05 Thread Sanne Grinovero
Nice! n+1 is something Hibernate Search has to deal with too, that's why I was interested in the fetch profiles and graph loading in JPA 2.1 On 5 March 2013 17:44, Emmanuel Bernard wrote: > I have implemented a solution that gives an entity based on a tuple. > https://hibernate.onjira.com/browse/