Re: [hibernate-dev] SEO ranking of ORM docs

2015-08-25 Thread Gunnar Morling
Hi, It's still bugging me that ORM 3.x documentation regular shows up as the top result in searches. With the docs being revamped for 5 it seems like the right timing to make sure results from https://docs.jboss.org/hibernate/stable/orm/... show up there first. My SEO knowledge is close to none,

Re: [hibernate-dev] [HSEARCH] Wrong query results when embedding *-to-many associations

2015-08-25 Thread Hardy Ferentschik
> in the forum [1] a user runs into a variant of the old problem where > boolean searches on different fields of the elements of an embedded > association return wrong results due to hits in different elements of > the collections. > > What is our recommendation/answer to this type of question? I'

[hibernate-dev] Search/Validator: Deleting old release files on hibernate.org

2015-08-25 Thread Gunnar Morling
Sanne, Hardy, Can we delete all the non-displayed release files from https://github.com/hibernate/hibernate.org/tree/staging/_data/projects for Search and Validator? Fetching them takes a considerable time in the website build and I don't think they are needed any longer once set to display=false

[hibernate-dev] Hibernate OGM 5.0.0.Alpha1 is out, bringing Redis support, update to Hibernate ORM 5 etc.

2015-08-25 Thread Gunnar Morling
Hi, It’s my pleasure to announce the first Alpha release of Hibernate OGM 5. This release is based on Hibernate ORM 5. It brings experimental support for the Redis key/value support, mapping improvements, updates to the MongoDB driver 3.0 and much more. Check out the full release announcement [1

Re: [hibernate-dev] Search/Validator: Deleting old release files on hibernate.org

2015-08-25 Thread Hardy Ferentschik
Hi, On Tue, Aug 25, 2015 at 12:24:21PM +0200, Gunnar Morling wrote: > Can we delete all the non-displayed release files from > https://github.com/hibernate/hibernate.org/tree/staging/_data/projects > for Search and Validator? +1 I can take care of this. I noticed the time it takes as well. I kind

Re: [hibernate-dev] Search/Validator: Deleting old release files on hibernate.org

2015-08-25 Thread Davide D'Alto
Can't we just move them into an archive folder? On Tue, Aug 25, 2015 at 12:02 PM, Hardy Ferentschik wrote: > Hi, > > On Tue, Aug 25, 2015 at 12:24:21PM +0200, Gunnar Morling wrote: > > Can we delete all the non-displayed release files from > > https://github.com/hibernate/hibernate.org/tree/stag

Re: [hibernate-dev] Search/Validator: Deleting old release files on hibernate.org

2015-08-25 Thread Emmanuel Bernard
I'd like to keep them around, we could avoid the maven fetch dance for display=false releases. On Tue 2015-08-25 12:06, Davide D'Alto wrote: > Can't we just move them into an archive folder? > > On Tue, Aug 25, 2015 at 12:02 PM, Hardy Ferentschik > wrote: > > > Hi, > > > > On Tue, Aug 25, 2015

Re: [hibernate-dev] Search/Validator: Deleting old release files on hibernate.org

2015-08-25 Thread Hardy Ferentschik
Hi, On Tue, Aug 25, 2015 at 01:33:46PM +0200, Emmanuel Bernard wrote: > I'd like to keep them around :-) Funny, I thought I was the only one who wants to keep them around. For me they are kind of part of the project history. > we could avoid the maven fetch dance for > display=false releases. T

Re: [hibernate-dev] Query Parser Redesign

2015-08-25 Thread andrea boriero
Hi Stevej I'm playing with you idea to remove the parent/child from the FromClause and introduce such a structure in the FromClauseProcessor. just a question, in the current implementation a fromClause can have more than one child fromClause , but I cannot figure out when this happen :( Thanks a

Re: [hibernate-dev] Query Parser Redesign

2015-08-25 Thread Steve Ebersole
from A a where a.b in (from B b ..) and a.c in (from C c ...) ... But regardless, the children are not important for a stack, just the parent. As I said when we discussed on ORC, the children are just maintained because I used them for tests. On Tue, Aug 25, 2015 at 6:53 AM andrea boriero wrote

Re: [hibernate-dev] Search/Validator: Deleting old release files on hibernate.org

2015-08-25 Thread Hardy Ferentschik
Hi, actually I was wrong, the fix is trivial. We have all the information to check whether the release is "displayed". I created a pull request - https://github.com/hibernate/hibernate.org/pull/97 I would have pushed it already, but it seems there is a problem with the CI environment. I pushed t

Re: [hibernate-dev] Query Parser Redesign

2015-08-25 Thread andrea boriero
I see, Thanks On 25 August 2015 at 13:17, Steve Ebersole wrote: > from A a where a.b in (from B b ..) and a.c in (from C c ...) ... > > But regardless, the children are not important for a stack, just the > parent. As I said when we discussed on ORC, the children are just > maintained because

Re: [hibernate-dev] Search/Validator: Deleting old release files on hibernate.org

2015-08-25 Thread Hardy Ferentschik
On Tue, Aug 25, 2015 at 02:33:41PM +0200, Hardy Ferentschik wrote: > I would have pushed it already, but it seems there is a problem with the > CI environment. I pushed to staging and the build failed due to a missing > Ruby/Rake setup. Not sure whether this is related to the recent changes/ > work

[hibernate-dev] Ansible set-up, error "unknown key type ecdsa"

2015-08-25 Thread Gunnar Morling
Sanne, When running Ansible to update the CI slaves on OS X, I get the following error: TASK: [jenkins-slave | Ensure cimaster is a known host] *** unknown key type ecdsa fatal: [209.132.178.232] => lookup_plugin.pipe(ssh-keyscan -t ecdsa 54.174.65.136) returned 255 Can we us

Re: [hibernate-dev] Search/Validator: Deleting old release files on hibernate.org

2015-08-25 Thread Gunnar Morling
Merged your fix, Hardy. The build is working again, too. There was something wrong with the way how Rake/Bundler were installed (not sure tbh. how it actually worked on some nodes, maybe due to some manual install?!), but this is fixed now. 2015-08-25 14:50 GMT+02:00 Hardy Ferentschik : > On Tue,

Re: [hibernate-dev] Query Parser Redesign

2015-08-25 Thread Steve Ebersole
Anyone want to propose an alternative approach to what I have working in my Antlr 4 PoC? If not, I think we should move that work to a GitHub Hibernate org repo and start tracking work and Jiras there. Objections? Also its no longer *just* HQL, we also plan to support JPA criteria queries here,

Re: [hibernate-dev] Query Parser Redesign

2015-08-25 Thread andrea boriero
no objections On 25 August 2015 at 20:12, Steve Ebersole wrote: > Anyone want to propose an alternative approach to what I have working in > my Antlr 4 PoC? > > If not, I think we should move that work to a GitHub Hibernate org repo > and start tracking work and Jiras there. Objections? > > Als

Re: [hibernate-dev] Query Parser Redesign

2015-08-25 Thread Steve Ebersole
I am starting that work here -> https://github.com/hibernate/hibernate-semantic-query On Tue, Aug 25, 2015 at 2:21 PM andrea boriero wrote: > no objections > > On 25 August 2015 at 20:12, Steve Ebersole wrote: > >> Anyone want to propose an alternative approach to what I have working in >> my

Re: [hibernate-dev] Query Parser Redesign

2015-08-25 Thread Steve Ebersole
I also created Jira project -> https://hibernate.atlassian.net/projects/SQM On Tue, Aug 25, 2015 at 3:56 PM Steve Ebersole wrote: > I am starting that work here -> > https://github.com/hibernate/hibernate-semantic-query > > > On Tue, Aug 25, 2015 at 2:21 PM andrea boriero > wrote: > >> no objec

[hibernate-dev] HQL and spatial

2015-08-25 Thread Steve Ebersole
Karel, etal We have discussed spatial-specific extensions to HQL for quite some time. But those discussions have always been kind of esoteric ("boy wouldn't it be nice to have some spatial support in HQL"). As we are working on redesigning the parsing and interpretation of HQL queries and since s

Re: [hibernate-dev] Query Parser Redesign

2015-08-25 Thread Gunnar Morling
+1 for the new repo. Just forked it and am looking into the amazing things you guys built recently :) Can I push simple stuff to that repo right away (e.g. adding the Eclipse plug-in to build.gradle)? Cheers, --Gunnar 2015-08-26 0:17 GMT+02:00 Steve Ebersole : > I also created Jira project ->