This question is not about caching.
I need this in-memory table for many small updates and complicated queries.
I must have it on a server shared between several nodes.
MySQL have MEMORY (HEAP) Storage Engine which is exactly what I need.
Can I tell Hibernate to create such a table, when defining a <class> or a '` in the XML?
Is there another solution?
Thanks!