Caching in Node.js with Redis: A Beginner’s Guide
Caching is a technique to store frequently used data in a temporary storage so that future requests for that data are faster. In Node.js applications, caching can help improve performance and reduce the load on your database. One popular tool
Postgresql | Querying over local and remote database together
You can create a dblink to a remote database in postgresql and query both local and remote together. Steps and an example below: 1. Enable dblink in postgresql CREATE EXTENSION dblink; 2. Create connection with database server SELECT dblink_connect(‘dbname=abc port=1234
Jquery | Perform dynamic operation on load of Datatable
Functionality needed : Once the datatable is completely loaded using ajax, I want to show second column only if role of the logged-in user is admin, else hide it. What we need to do is, call API “initComplete” in datatable’s
How to add multiple modules and controllers in angularjs
If we have multiple modules and controller in single page i.e. : <div id=”id1” ng-app=”App1″ ng-controller=”productController”> </div> <div id=”id2” ng-app=”app2″ ng-controller=”orderController”> </div> We need to add angular.bootstrap after adding the controllers: var App1 = angular.module(App1, []); mySampleApp.controller(productController, function($scope) {}); var
Java | Method overriding and exceptions
Problem: Suppose you have a method M1 in class A that throws exception E1 and you override this method in class B (B extends A). Are there any rules about exceptions when methods are overridden? Solution: There are following rules
Salesforce | ALL ROWS
How to get all records of sfobject including records in recycle bin of salesforce and undelete the records? List objlst = [select id,isdeleted from sfobject ALL ROWS]; //Just add ALL ROWS at the end of SOQL, it retrieves all the
ASP .NET | InvalidOperationException: An asynchronous module or handler completed while an asynchronous operation was still pending
[InvalidOperationException: An asynchronous module or handler completed while an asynchronous operation was still pending] Error : Asp.net Web API – parent method executes itself before the child asynchronous method is completed. Description : I have a public method that calls
CakePHP 3.x | How to change URL of your website to hide controller/action name
Requirement: While running the website in browser, the url path shows controller name followed by the action name and parameters list. In that case the url looks like: www.xyz.com/User/showDetails/ We may come across two types of requirements. Displaying only the
Javascript | How to call ajax in DevExtreme component using angularjs
var folderApp = angular.module(“folder”, [“dx”]); folderApp.controller(“folderController”, [“$scope”, “$http”, function($scope, $http) { $scope.gridSettings = { columns: [{ dataField: “myObjectName”, caption: “Name”, } { dataField: “myObjectEmail”, caption: “Email”, }], dataSource: new DevExpress.data.CustomStore({ load: function(loadOptions) { return $http({ method: “GET”, url: ” ”;
Salesforce: Execute flow from Process Builder
How to execute flow from Process Builder in salesforce? Sometime it is very useful to execute flow from the Process Builder. We can execute as many flows as we want. Flow can be used to create record, update record or
