The `putResult` method in `com.liferay.portal.kernel.dao.orm.EntityCacheUtil` is a Java method used to store an object or entity as a cache result. This method allows developers to cache the result of a database query or any other computation, allowing for quicker access to the result in future operations. The cached result can be retrieved using the `getResult` method from the same cache class. This helps improve the performance of applications by reducing the need to re-compute or re-fetch the result each time it is required.
Java EntityCacheUtil.putResult - 30 examples found. These are the top rated real world Java examples of com.liferay.portal.kernel.dao.orm.EntityCacheUtil.putResult extracted from open source projects. You can rate examples to help us improve the quality of examples.