Guest User

Untitled

a guest
Nov 30th, 2017
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <!-- slower -->
  2. <tx:method name="find*" read-only="true" propagation="REQUIRED" />
  3.  
  4. // slower
  5. @Transaction(readOnly = true)
  6.  
  7. <!-- faster -->
  8. <tx:method name="find*" read-only="false" propagation="REQUIRED" />
  9.  
  10. // faster
  11. @Transaction
  12.  
  13. ; Got these from: https://community.openvpn.net/openvpn/wiki/Gigabit_Networks_Linux
  14. proto udp
  15. tun-mtu 6000
  16. fragment 0
  17. mssfix 0
  18.  
  19. jdbc:mysql://.../database?useLocalSessionState=true&useLocalTransactionState=true
Add Comment
Please, Sign In to add comment