There are 2.4 times fewer SQL queries. eCommerce pages load 3.9 times faster. Reduced the number of HTTP requests, hence the lower latency The features do not end here. The developers at Odoo are still planning on offering new features in the future. This tutorial will show you how to ins...
Code-block::javascript odoo.define('module.Something', function (require) { "use strict"; var ajax = require('web.ajax'); return ajax.jsonRpc(...).then(function (result) { // some code here return something; }); }); Here, we will load some data by an RPC and simply return a ...