[hibernate-dev] Why Hibernate 4.2.x should receive more updates

2014-04-05 Thread Marc Schipperheyn
Just wanted to outline some reasons for keeping the Hibernate 4.2.x release train alive. I would love to update today to 4.3.x. But I'm on Spring 3.x and the Hibernate 4.3.x line only made it into Spring 4.x. So everybody using Spring 3.x will be stuck on 4.2.x. I would say that's prob just about

Re: [hibernate-dev] Why Hibernate 4.2.x should receive more updates

2014-04-07 Thread Marc Schipperheyn
Fair enough. It's a shame though. Like it or not, there are tons of people using Spring and I'm guessing the vast majority will not be on 4.0 any time soon, even though they might want to. So, this will certainly impact the uptake of Hibernate latest version (including the amount of bug reports aga

[hibernate-dev] Ology, a social network running on Hibernate

2014-04-07 Thread Marc Schipperheyn
Hi all, On another note I just wanted to mention the new release of Ology, www.ology.com.br. It's a social network that can be seen as a mix between Facebook and LinkedIn exclusively for physicians that runs on Spring, Hibernate, Hibernate Search, YUI. Although this is not a technical topic, and I

[hibernate-dev] Interesting article Lucene Joins

2014-05-08 Thread Marc Schipperheyn
http://blog.seecr.nl/2014/02/24/a-faster-join-for-solrlucene/ Just wanted to point out this article that talks about query time joins in Lucene. ___ hibernate-dev mailing list hibernate-dev@lists.jboss.org https://lists.jboss.org/mailman/listinfo/hiberna

[hibernate-dev] Does @ContainedIn trigger reindexing

2014-05-21 Thread Marc Schipperheyn
I couldn't find a test on this and I'm wondering if with a structure with on the one hand @IndexedEmbedded(includePaths={"id","someField"}) and on the other hand @ContainedIn, there would be a reindexing triggered of the embedded element if "someOtherField" was changed at the root element (but not

[hibernate-dev] Hibernate Search Alpha/Beta

2014-07-19 Thread Marc Schipperheyn
I'm eagerly awaiting Hibernate Search 5 but recently all the progress seems to be contextual (testsuites/updating dependencies/etc). Should a due date be put on alpha 5? The Hibernate team has always been excellent at meeting deadlines. Or is this a holidays lull? __

[hibernate-dev] HSearch 5.0

2014-08-19 Thread Marc Schipperheyn
Hi, Is there any tentative idea on Hibernate Search 5.0 will come out? It just feels like progress is extremely slow and when I look at JIRA I keep seeing issues being added and fixed that seem extremely contextual (WildFly, improve errorHandler, etc) and nothing to do with the ambition to deliver

Re: [hibernate-dev] HSearch 5.0

2014-08-20 Thread Marc Schipperheyn
Hi Sanne, Thanks for that extensive reply. > Considering holidays & similar, we should be fully focused on Search > again next week and first goal is of course to challenge the roadmap > and see what can be cut to speedup a 5.0.0.Final release.. However > many users are already using the current

Re: [hibernate-dev] HSearch 5.0

2014-08-21 Thread Marc Schipperheyn
On Aug 21, 2014 12:08 PM, "Sanne Grinovero" wrote: > Hi Marc, > the QueryTimeJoin is indeed very interesting but since the user needs > to mark the "join point" somehow I hope we'll be able to build it as a > new feature (probably with its own new annotation) in some 5.next ? > QueryTimeJoin does

[hibernate-dev] Projecting an index

2014-09-03 Thread Marc Schipperheyn
I'm wondering if would be conceivable to project a custom index based on the programmatic API when you are also using Annotations? Our use case is basically that we have a social "wall" where we retrieve "posts" which can reference related objects: other posts, user info, classifieds, events, grou

Re: [hibernate-dev] hibernate-dev Digest, Vol 100, Issue 8

2014-10-31 Thread Marc Schipperheyn
I'm disappointed to see Spring 2015 on HSEARCH 5.0. Especially given how long Lucene 4 has been in the field (October 2012). HSEARCH seemed to be at a standstill for most of this year. I would prefer to cut down on features to see it sooner, but I guess that's not an option anymore. Also, I would

Re: [hibernate-dev] hibernate-dev Digest, Vol 100, Issue 8

2014-10-31 Thread Marc Schipperheyn
Yeah, apologies. ___ hibernate-dev mailing list hibernate-dev@lists.jboss.org https://lists.jboss.org/mailman/listinfo/hibernate-dev

[hibernate-dev] Was HSearch 4.4.5 ever released to Maven?

2014-11-04 Thread Marc Schipperheyn
I see it in Jira as a version, but in Maven only 4.4.4.Final is available. ___ hibernate-dev mailing list hibernate-dev@lists.jboss.org https://lists.jboss.org/mailman/listinfo/hibernate-dev

[hibernate-dev] Some migration pains HSearch 5

2015-01-29 Thread Marc Schipperheyn
So, I've started migrating our production environment to HSearch 5 at long last. Some of the initial pains that may warrant some documentation love: * @IndexedEmbedded basically inverts the default because before HSearch 5, the default was essentially: @IndexedEmbedded(includeEmbeddedObjectId=tru

[hibernate-dev] autosuggest

2015-02-04 Thread Marc Schipperheyn
Lucene 4 has some great improvements in autosuggest/autocomplete, e.g.AnalyzingInfixSuggester. GroupingSearch and JoinUtil are other nice ones. It would be interesting to see blog writeups on leveraging these new features through HSearch. Joins should imho even be considered as candidates for inc

[hibernate-dev] @IndexedEmbedded ids numeric in stead of Strings

2015-02-04 Thread Marc Schipperheyn
I'm noticing that on @IndexedEmbedded HSearch 5, an id reference is indexed as a numeric field, when, that same id is indexed as a string being a @DocumentId. I had some seemingly inconsistent behaviour in my tests so now I'm not so sure what is the intended behaviour? So, @Entity @Indexed public

Re: [hibernate-dev] @IndexedEmbedded ids numeric in stead of Strings

2015-02-04 Thread Marc Schipperheyn
Yeah, I'm now seeing that parent.id is not actually stored as numeric. However, when I project on it, it's returned as a Long for some reason. Hmm, confusing. ___ hibernate-dev mailing list hibernate-dev@lists.jboss.org https://lists.jboss.org/mailman/lis

[hibernate-dev] Inconsistent projection result

2015-02-12 Thread Marc Schipperheyn
Projecting on an id is giving me inconsistent results. On the same method, sometimes a String is returned, other times a Number. I'm even seeing this difference running the test twice in a row. I haven't been able to find what makes it switch, but I am 100% sure it happens. I have this structure.

[hibernate-dev] CachingWrapperFilter

2015-02-15 Thread Marc Schipperheyn
Just wondering with Lucene 4 whether the Hibernate CachingWrapperFilter should leverage that instead of using its own caching implementation. Given the discussion in LUCENE-1536. I'm not superfamiliar with this part of the code, but it looks like the LUCENE-1536 allows optimization at a deeper lev

[hibernate-dev] Lucene-suggest

2015-02-23 Thread Marc Schipperheyn
Lucene 4.x offers some interesting new functionality with regards to autosuggest and google style suggestions. As part of this functionality, as I understand it, the suggester builds a separate index based on the available data with a specific .build() function. I'm assuming that this separate in

Re: [hibernate-dev] Lucene-suggest

2015-02-24 Thread Marc Schipperheyn
Hi Sanne, I would not see a use for such an intense CPU hit since we intend to run it as an autocomplete against forum posts titles (e.g. stackoverflow). So, that would be changing on a continuous basis. A cron job would suit just fine for that. We can tune that to our needs. Cheers, Marc __

[hibernate-dev] Is HSEARCH-1786/HSEARCH-1814 on the radar

2015-02-25 Thread Marc Schipperheyn
Hi, Just wondering if HSEARCH-1786/HSEARCH-1814 are on the radar? We have stopped all of our upgrade efforts because of this. And if they are valid bugs, it basically means that HSEARCH 5.0, and 5.01 are unreliable for production use.` I'm just wondering if it's considered a real bug, if so it's

Re: [hibernate-dev] Strange issue massindexer and classbridge

2015-03-11 Thread Marc Schipperheyn
Nope, no errors. ___ hibernate-dev mailing list hibernate-dev@lists.jboss.org https://lists.jboss.org/mailman/listinfo/hibernate-dev

Re: [hibernate-dev] Strange issue massindexer and classbridge

2015-03-11 Thread Marc Schipperheyn
Are you able to extract a test case. It is really nothing which rings a bell directly. I think we would need to see this happen in a test scenario to be able to dig deeper. > No, don't have time for that. It's a little too edgy for me to spend time on. If it happens again, I'll try to physically d

[hibernate-dev] Strange issue massindexer and classbridge

2015-03-12 Thread Marc Schipperheyn
Hi, I just wanted to share a strange issue I had w the massindexer and a classbridge where a whole class of entities was not being indexed by the massindexer (Hibernate Search 5.1). The entity in question was part of an inheritance hierarchy. Something like BaseComment Comment Post R

[hibernate-dev] Elastic search Lucene extension

2016-03-05 Thread Marc Schipperheyn
I saw the elastic search blog post and while is not yet sonething on our radar, it s certainly interesting! I already saw that if you bypass HSearch to go native, the syntax changes. What about Lucene extensions? For instance, we extensively use joinutil and grouped search. Couldn't live without

Re: [hibernate-dev] Elastic search Lucene extension

2016-03-07 Thread Marc Schipperheyn
On Sun, Mar 6, 2016 at 10:12 AM Sanne Grinovero wrote: > On 5 March 2016 at 22:04, Marc Schipperheyn > wrote: > > I saw the elastic search blog post and while is not yet sonething on our > > radar, it s certainly interesting! > > > > I already saw that if you by

[hibernate-dev] Hibernate Search and Bobo Browse

2010-09-10 Thread Marc Schipperheyn
Hi, I would like to suggest an integration of Hibernate Search with Bobo Browse (http://code.google.com/p/bobo-browse/). Bobo Browse is the open source faceting engine developed by LinkedIn and AFAIC it's amazing. Even though the documentation is sparse, the results are easy to achieve, flexible a

Re: [hibernate-dev] Hibernate Search and Bobo Browse

2010-09-10 Thread Marc Schipperheyn
ery. > > It would probably also be good if the integration would be optional so that > you only need to add additional > libraries if you want to use bobo browse. > > We can help you some more, if you explain in more detail how you think this > should work and what yo

[hibernate-dev] Spring Cache Abstraction

2011-02-23 Thread Marc Schipperheyn
It would be interesting to have the Hibernate team comment/blog on the new Spring Cache Abstraction functionality and how it relates to Hibernate managed entities. Perhaps some strategies, etc. It's very attractive to just cache entities in stead of caching entity values with the second level cache

Re: [hibernate-dev] hibernate-dev Digest, Vol 56, Issue 20

2011-02-28 Thread Marc Schipperheyn
I have a lot of experience with Bobo Browse. The code is well maintained and performs well. I don't have time to download and implement code examples, but if you have working examples up somewhere, I'd be happy to take a look. Vriendelijke groet, Marc On Mon, Feb 28, 2011 at 6:00 PM, wrote: >

Re: [hibernate-dev] hibernate-dev Digest, Vol 56, Issue 20

2011-02-28 Thread Marc Schipperheyn
On Mon, Feb 28, 2011 at 7:29 PM, Hardy Ferentschik wrote: > Hi Marc, > > thanks for your feedback. Answers inline > > > On Mon, 28 Feb 2011 19:08:43 +0100, Marc Schipperheyn < > m.schipperh...@gmail.com> wrote: > > I have a lot of experience with Bobo Browse. T

Re: [hibernate-dev] hibernate-dev Digest, Vol 56, Issue 20

2011-02-28 Thread Marc Schipperheyn
, Marc M.Schipperheyn MSW BV | Nova Zemblastraat 12-a, 1013 RK, Amsterdam | KvK: 02090184 m: +31 6 218 03 003 | skype: mschipperheyn | Twitter: mschipperheyn On Mon, Feb 28, 2011 at 7:39 PM, Marc Schipperheyn wrote: > > On Mon, Feb 28, 2011 at 7:29 PM, Hardy Ferentschik < > hiber

[hibernate-dev] HSearch: Do includePaths also reduce queries because objects "dirty" less quickly?

2012-03-07 Thread Marc Schipperheyn
With the new includePaths on IndexedEmbedded is it now possible to have a more specific "dirty" check? Since you are indexing less paths, it stands to reason that less objects will need to be reindexed because they are (potentially) "dirty" during a save operation. I'm just curious if new opportuni

[hibernate-dev] A fine grained way to mark @Transient and @ClassBridges as dirty

2012-06-22 Thread Marc Schipperheyn
@Transient @Field and @ClassBridges mark methods and classes dirty by default because there is currently no way for HSearch to know which fields are managed here. In the case of @Transient @Field this will often be ok, because it will only lead to some superfluous extra indexing which is not a big

Re: [hibernate-dev] A fine grained way to mark @Transient and @ClassBridges as dirty

2012-06-25 Thread Marc Schipperheyn
The TwoWayFieldBridge issue seems similar to what I'm suggesting and would seem to resolve most of my issues. ___ hibernate-dev mailing list hibernate-dev@lists.jboss.org https://lists.jboss.org/mailman/listinfo/hibernate-dev

Re: [hibernate-dev] hibernate-dev Digest, Vol 76, Issue 18

2012-10-10 Thread Marc Schipperheyn
I have setup a jobs alternative on www.freelas.net. Right now we focus mainly on the Dutch and Brazilian markets but you can always publish jobs without a location. You can find a direct link to the English version here: http://www.freelas.net/nederland/NL_e

Re: [hibernate-dev] The problem of cascading database reads

2012-11-23 Thread Marc Schipperheyn
Will do. ___ hibernate-dev mailing list hibernate-dev@lists.jboss.org https://lists.jboss.org/mailman/listinfo/hibernate-dev

Re: [hibernate-dev] The problem of cascading database reads

2012-11-23 Thread Marc Schipperheyn
> > > > * In the Network example, the includedPaths only contains the id. Looking > > at my own work, I often find that IndexedEmbedded references just stores > > the id and I believe we should think about optimizing this use case. In > > that case an optimized read from the database could be execu

Re: [hibernate-dev] hibernate-dev Digest, Vol 79, Issue 13

2013-01-27 Thread Marc Schipperheyn
I just ran into a weird problem with Hibernate Search upgrading to Spring 3.1.4. I wrote up a Jira here https://jira.springsource.org/browse/SPR-10221and thought I'd point it out here. ___ hibernate-dev mailing list hibernate-dev@lists.jboss.org https://l

Re: [hibernate-dev] hibernate-dev Digest, Vol 79, Issue 21

2013-01-30 Thread Marc Schipperheyn
Any word on the release of Hib ORM 4.1.10? I ran into an issue today that forces me to go back 4.1.7 Vriendelijke groet, Marc M.Schipperheyn MSW BV | Nova Zemblastraat 12-a, 1013 RK, Amsterdam | KvK: 02090184 skype: mschipperheyn | Twitter: mschipperheyn Netherl

[hibernate-dev] Hibernate 4.1.10.Final not showing up @Maven

2013-03-01 Thread Marc Schipperheyn
Head's up Hibernate 4.1.10.Final is not showing up in the maven repositories ___ hibernate-dev mailing list hibernate-dev@lists.jboss.org https://lists.jboss.org/mailman/listinfo/hibernate-dev

[hibernate-dev] Hibernate-ehcache 4.1.10.Final

2013-03-04 Thread Marc Schipperheyn
Hi, Looks like Hibernate-core 4.1.10.Final is missing from some repositories and Hibernate-ehcache.4.1.0.Final from *all* repositories. Same goes for hibernate-entitymanager. Shouldn't these versions be in sync? ___ hibernate-dev mailing list hibernate-d

[hibernate-dev] Fwd: Hibernate-ehcache 4.1.10.Final

2013-03-04 Thread Marc Schipperheyn
repo1.maven.org repo2.maven.org repository.jboss.org/nexus mvnrepository.com > ___ hibernate-dev mailing list hibernate-dev@lists.jboss.org https://lists.jboss.org/mailman/listinfo/hibernate-dev

Re: [hibernate-dev] Fwd: Hibernate-ehcache 4.1.10.Final

2013-03-04 Thread Marc Schipperheyn
ven2/org/hibernate/hibernate-ehcache/4.1.10.Final/> > etc > > As you can see, there are clearly there... > > > On Mon 04 Mar 2013 03:02:15 PM CST, Guillaume Smet wrote: > >> On Mon, Mar 4, 2013 at 9:49 PM, Marc Schipperheyn >> wrote: >> >>