[hibernate-dev] Blog tag vs categories

2016-03-21 Thread Emmanuel Bernard
It looks like you have created the elasticsearch tag in the blog http://in.relation.to/elasticsearch/ I thought we had decided to use tags more as well defined categories: * the projects or specs we work on * 'Events', 'Releases', 'Discussion', 'Off-topic' Do you really think we should extend to

[hibernate-dev] ArrayHelper cleanup

2016-03-21 Thread Vlad Mihalcea
Hi, When reviewing this PR ( https://github.com/hibernate/hibernate-orm/pull/1305/files), I noticed that some methods can be simply replaced by java.util.Arrays (e.g. indexOf, toStringArray), while other methods are not used at all (e.g. reverse). Since this is an internal helper utility, do we w

Re: [hibernate-dev] Blog tag vs categories

2016-03-21 Thread Sanne Grinovero
Sorry that restriction wasn't clear to me. Could we wait some time before deleting it? I'm afraid I shared that link on social media, e.g. the Elasticsearch forums. BTW It's not clear to me why you fear an explosion; having a tag cloud is not uncommon on blogs, and is based on the idea of having

Re: [hibernate-dev] Blog tag vs categories

2016-03-21 Thread Davide D'Alto
The problem with having many tags is that you will have a huge tag cloud with just a few words more visible than the others. This was the case before we did some clean up. In our case it also becomes hard to keep track of the tags we already used with the result of several duplicates. Now that I t

Re: [hibernate-dev] Blog tag vs categories

2016-03-21 Thread Sanne Grinovero
On 21 March 2016 at 14:10, Davide D'Alto wrote: > The problem with having many tags is that you will have a huge tag cloud > with just a few words more visible than the others. > This was the case before we did some clean up. In our case it also becomes > hard to keep track of the tags we already

[hibernate-dev] hibernate.hbm2ddl.auto = none

2016-03-21 Thread Sanne Grinovero
Hello all, I've often used, and see others use, the value "none" for the property hibernate.hbm2ddl.auto. In recent versions of Hibernate ORM I now get the following warning: [WARN] SessionFactoryBuilderImpl: Unrecognized hbm2ddl_auto value : none. Supported values include create, create-drop, u

Re: [hibernate-dev] ArrayHelper cleanup

2016-03-21 Thread Emmanuel Bernard
On Mon 2016-03-21 13:38, Vlad Mihalcea wrote: > Hi, > > When reviewing this PR ( > https://github.com/hibernate/hibernate-orm/pull/1305/files), I noticed that > some methods can be simply replaced by java.util.Arrays (e.g. indexOf, > toStringArray), > while other methods are not used at all (e.g.

Re: [hibernate-dev] ArrayHelper cleanup

2016-03-21 Thread Vlad Mihalcea
Good thing that you mentioned it. I'd have go through all Hibernate projects to make sure that I don't miss any method usage case. On Mon, Mar 21, 2016 at 4:54 PM, Emmanuel Bernard wrote: > On Mon 2016-03-21 13:38, Vlad Mihalcea wrote: > > Hi, > > > > When reviewing this PR ( > > https://github.

Re: [hibernate-dev] hibernate.hbm2ddl.auto = none

2016-03-21 Thread Vlad Mihalcea
Sounds like a good idea. We can have a value of 'none' which can be used to easily make the switch from an external property during build. for instance. +1 Vlad On Mon, Mar 21, 2016 at 4:43 PM, Sanne Grinovero wrote: > Hello all, > I've often used, and see others use, the value "none" for the

Re: [hibernate-dev] Blog tag vs categories

2016-03-21 Thread Emmanuel Bernard
On Mon 2016-03-21 14:26, Sanne Grinovero wrote: > On 21 March 2016 at 14:10, Davide D'Alto wrote: > > The problem with having many tags is that you will have a huge tag cloud > > with just a few words more visible than the others. > > This was the case before we did some clean up. In our case it a

Re: [hibernate-dev] Blog tag vs categories

2016-03-21 Thread Davide D'Alto
> I'm ok to remove it, but I don't buy that reason: it sounds more like a technical limitation than something which should affect our capability to produce good content. The lack of validation of the tags is a technical limitation, and should not be too hard to add, keeping the words in the cloud

Re: [hibernate-dev] Blog tag vs categories

2016-03-21 Thread Davide D'Alto
It seems that "Off-topic" and "Off topic" are basically the same tag, they both point to: http://in.relation.to/off-topic/index.html It's probably a bug in the tag cloud generation On Mon, Mar 21, 2016 at 3:13 PM, Davide D'Alto wrote: > > I'm ok to remove it, but I don't buy that reason: it so

[hibernate-dev] Implicit and physical naming strategies

2016-03-21 Thread Gail Badner
I see documentation of implicit and physical naming strategies for 5.1 [1], but not for 5.0. Where in the 5.0 documentation is this information? Have changes been made to this functionality in 5.1? Thanks, Gail [1] https://docs.jboss.org/hibernate/orm/5.1/userguide/html_single/chapters/domain/na

Re: [hibernate-dev] Implicit and physical naming strategies

2016-03-21 Thread Vlad Mihalcea
Hi Gail, The reason why there is such a huge difference between the 5.0 and 5.1 documentation is because 5.1 uses the new User Guide which was written from scratch. I think it's a good idea to just grab the new doc and port it on 5.0 but that might require some changes on hibernate.org too. Vlad