I have a grails app that uses the Spring-Security-Core plugin, which integrates Spring Security 3 into my app. I belive that Spring/Hibernate will do some transactional operations under the hood. If that is the case, would it be better to use mysql’s innodb engine instead of the default MyIsam engine? or are the operations independent of the underlying database?
Thanks in advance!
I have a grails app that uses the Spring-Security-Core plugin, which integrates Spring Security
Share
There’s nothing particularly transactional about how the plugin works. It only reads – the primary database access will be loading a user and the user’s assigned roles. You will want to use transactions when updating the user, assigning roles, etc. but that has nothing to do with security, it’s just the right thing to do.
As the others said, there’s very little reason to use MyISAM except in specialized use cases that are probably better suited for a NoSQL database. InnoDB is very fast and has excellent transaction support.