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
An example of Ajax to display dyanamic images and text on webpage
Whenever the situation occurs to rerender the page contents without reloading the whole page, we use ajax in it. By using ajax we get the response data back in the success function which we will show on the screen. Let’s
AWS | How to share snapshot with another aws account?
1. Log on to AWS console account. 2. Click on Snapshot option:  3. Right Click on the desired snapshot ID and select Modify permissions: 4. Select the option whether to share it publicly or you can share it in
Floating Point issue in Programming Languages
When we pass a floating point value to a variable, then the value which we store in the variable is not the actual value but it is something approximately near to that number which transfers to that variable. Let us
MySQL | Enable/Disable Auto Commit
How to enable or disable autocommit of changes in MySQL using MySQL workbench? Go to Edit->Preferences->SQL Editor->SQL Execution and check your current settings: Also commit/rollback can be done with the buttons on SQL tab:
Salesforce | Set custom RecordType in case of web to lead
Situation: We have a web to lead form and every time we create a lead it always takes “Personal” as record type which is default record type in our org. We want to set another recordType like Agentco or Trucking
AWS | Upgrading mysql version
AWS: Upgrading MySQL version Below are few step to upgrade Mysql version very easily on AWS-RDS: 1. Log on to AWS console. 2. Open AWS RDS from Database section: 3. Click on Instances: 4. Select the Database Instance which you
Salesforce: Truncate records from custom object in salesforce without using apex code
Truncate records from custom object in Salesforce without using apex code Salesforce provides a feature to delete bulk records for the standard objects. This can be achieved by navigating Setup -> Data Management-> Mass Delete Records. But in case we
Configuring Web Distribution and Load Balancer in AWS
Using tools and steps listed below we can implement web distribution and Load balancer in AWS and also this will save cost of buying ssl certificate from CA authorized vendors. Instead, it will use certificates provided by Amazon server. Tools
C# – Convert output of a Web request into an object list
WebRequest gives response in the form of Stream. In order to use it further in the form of c# object, I have used below code: Sample code : WebRequest requestHttp = WebRequest.Create(reqURL); using(WebResponse responseHttpRequest = requestHttp.GetResponse()) { Stream responseStream =
