Hi, What's the difference between these properties?
openjpa.QueryCache openjpa.jdbc.QuerySQLCache My understanding was that QueryCache controlled caching of result data, and QuerySQLCache controlled caching of the mapping from JPQL to SQL statements (i.e. not data caching). Given this understanding I thought it necessary to set only 'openjpa.QueryCache=false' if I did not want the data results from a query to be cached. What I am actually seeing is result data being cached unless 'openjpa.jdbc.QuerySQLCache=false' is set. Is this expected behaviour? I'm using 2.0.1. Thanks Joel