Re: [hibernate-dev] MassIndexer have any known issues when InfinispanDirectory is used?

2011-08-26 Thread Sanne Grinovero
Hi Tom, the MassIndexer needs to acquire the Directory lock, which is in this case distributed, i.e. it's a single lock to coordinate writes across all nodes (searches can happen in parallel, but writes can not). Is it possible that another node is writing to the index, or is any node using exclu

[hibernate-dev] Hibernate Search 3.4.1.Final released

2011-08-26 Thread Sanne Grinovero
Hello all, as mentioned on http://in.relation.to/Bloggers/AMuchRequestedHibernateSearch341Released today we published a bugfix release for the Hibernate Search 3.4 branch. Regards, Sanne ___ hibernate-dev mailing list hibernate-dev@lists.jboss.org https:

Re: [hibernate-dev] [Search] proposing an alternative to depth in @IndexedEmbedded

2011-08-26 Thread Hardy Ferentschik
> @IndexedEmbedded(depth = 1, paths={"livingAddress.countryCode", > "bornPlace.countryCode"}) > private Person ownedBy I think leaving out the excludes is a good idea and specifying paths as strings seems to be e easier option. However, I still would make it a new annotation (@IndexPaths) or a

Re: [hibernate-dev] [Search] proposing an alternative to depth in @IndexedEmbedded

2011-08-26 Thread Hardy Ferentschik
> Option 1: Explicit inclusion only > @IndexPaths( >paths={ >@IndexPath("a.b.c"), >@IndexPath("d.e") >} > ) > private SomeType type; @IndexPath allows for further extension, but I could live with simple strings as well. > I would be ecstatic if just @IndexP