I am currently working on a school project that should characterize MySQL performance in relation to different levels of isolation. I tested things on READ UNCOMMITTED, READ COMMITTED, REPEATABLE READ and SERIALIZABLE. Now, I would like to test things using snapshot isolation.
I understand that when using the default REPEATABLE READ in InnoDB, snapshot isolation is shared, but I wonder if it is possible to set the isolation level only for highlighting snapshots? How can I do it?
source share