[MNT-25404] Query Performance - High performance cost in retrieving nodes/node properties for large result sets

- Clean up paramenter
This commit is contained in:
Jared Ottley
2025-11-02 22:41:14 -07:00
parent 8ad373f1fc
commit df5648c86b

View File

@@ -542,9 +542,9 @@ public class EntityLookupCache<K extends Serializable, V extends Object, VK exte
* <p/> * <p/>
* It is up to the client code to decide if a <tt>null</tt> return value indicates a concurrency violation or not; the former would normally result in a concurrency-related exception such as {@link ConcurrencyFailureException}. * It is up to the client code to decide if a <tt>null</tt> return value indicates a concurrency violation or not; the former would normally result in a concurrency-related exception such as {@link ConcurrencyFailureException}.
* *
* @param value * @param values
* The entity value, which may be valid or invalid (<tt>null</tt> is allowed) * The entity values, which may be valid or invalid (<tt>null</tt> is allowed)
* @return Returns the key-value pair or <tt>null</tt> if the value doesn't reference an entity * @return Returns a list of key-value pairs
*/ */
@SuppressWarnings("unchecked") @SuppressWarnings("unchecked")
public List<Pair<K, V>> getByValues(List<V> values) public List<Pair<K, V>> getByValues(List<V> values)