Learn how to use Hibernate Profiler
- By per seat do you mean I need one license for home and one for work?
- Common Issues
- Redistribution Rights and Source Control
- Resolving a permission error when trying to save license
- UltraMon Compatibility Issue
- When you buy a license, is this a license for some period? some version? or buy one and keep getting updates for ever?
- Avoid too many joins
- Ends query (like '%...%') will force the database to scan the full table
- Excessive number of rows returned
- Large number of individual writes
- More than one session per request
- Multiple write sessions in the same request
- Select N+1
- Select N+1 in the same request
- Superfluous <many-to-one> update - use inverse='true'
- Too many cache calls in the same request
- Too many cache calls per session
- Too many database calls in the same request
- Too many database calls per session
- Transaction disposed without explicit rollback / commit
- Unbounded result set
- Use of implicit transactions is discouraged
- Using a single session in multiple threads is likely a bug