Ir Ui View Cache
by JUVENTUD PRODUCTIVA VENEZOLANA http://www.juventudproductivabicentenaria.com
Odoo
Availability |
Odoo Online
Odoo.sh
On Premise
|
Technical Name |
view_record_cache |
License | AGPL-3 |
Website | http://www.juventudproductivabicentenaria.com |
Versions | 8.0 9.0 10.0 11.0 12.0 13.0 |
load performance of the ir.ui.view object
Accelerates the loading of ir.ui.view object records by improving the performance of the database layer
Juventud Productiva

Overview
This module to cache the records of the ir.ui.view object, so that part of the content of the view is only requested once to postgresql (Disk) and the rest of the requests are returned from the RAM.
Features
Improve application performance.
Increase reading performance (IOPS).
Increase the number of business operations to the database.
It caches more than 30 requests to the database for each load of any web view, per user, which translates, according to the modules installed, a cache of more than 2000 requests that are not made to postgresql per user.
It only requires the installation of this module to work, since it only uses the python cache technique.
This version only supports cache for single language instances, if you require a module with cache for multiple languages press. Web base cache
How does caching work?
Data in a cache is usually stored in fast-access hardware, such as random access memory (RAM) and can also be used in conjunction with a software component. The main objective of the cache is to increase data recovery performance to avoid having to access the underlying storage layer, which is slower. When exchanging capacity for speed, a cache typically stores a subset of data transiently, unlike databases whose elements are usually complete and durable.
If we compare accesses, we have to latency, that is, the time we wait to receive the first data from a memory. The hard drive, this time, is milliseconds (DISK) and in nanosecond (RAM) memories. In this case there are differences of 100,000 times.

Please log in to comment on this module