HHH-8939 Reduce contention on initialization of ColumnNameCache instances by loaders
This commit is contained in:
parent
758d635ca2
commit
0f0a95e2b8
|
@ -2104,15 +2104,17 @@ public abstract class Loader {
|
||||||
}
|
}
|
||||||
|
|
||||||
private ColumnNameCache retreiveColumnNameToIndexCache(final ResultSet rs) throws SQLException {
|
private ColumnNameCache retreiveColumnNameToIndexCache(final ResultSet rs) throws SQLException {
|
||||||
if ( columnNameCache == null ) {
|
final ColumnNameCache cache = columnNameCache;
|
||||||
synchronized ( this ) {
|
if ( cache == null ) {
|
||||||
if ( columnNameCache == null ) {
|
//there is no need for a synchronized second check, as in worst case
|
||||||
LOG.trace( "Building columnName -> columnIndex cache" );
|
//we'll have allocated an unnecessary ColumnNameCache
|
||||||
columnNameCache = new ColumnNameCache( rs.getMetaData().getColumnCount() );
|
LOG.trace( "Building columnName -> columnIndex cache" );
|
||||||
}
|
columnNameCache = new ColumnNameCache( rs.getMetaData().getColumnCount() );
|
||||||
}
|
return columnNameCache;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return cache;
|
||||||
}
|
}
|
||||||
return columnNameCache;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue