views:

30

answers:

2

Does grails support sharding?

I want a multi-tenancy database solution and I looking at grails currently.

+1  A: 

Grails ORM is built on Hibernate, so my guess is that it'll be capable of (or limited to) whatever Hibernate can do. Hibernate Shards is the extension that supports sharding. I haven't used it myself, but you might want to try plugging that in and see what happens.

ecodan
A: 

Take a look at: http://www.grails.org/plugin/sharding

Jeffer