Category: Database
How to make a batch class schedulable
Batch Apex is a very powerful tool that allows us to work on large volumes of data in bite-sized chunks (batches) so that we don’t hit Salesforce’s governor limits. Often, we need to schedule our batch apex to run at
Implementing Asynchronous Task Processing using Celery and RabbitMQ
Celery is a popular open-source task queue/job queue that allows you to execute tasks asynchronously in the background. It is written in Python and utilizes distributed message passing to manage the execution of tasks. With celery, you can schedule tasks
What is a serverless application? Explain Microsoft Azure Functions
A serverless application is a type of application that is designed to run on a cloud computing platform, where the cloud provider takes care of managing the underlying infrastructure and scaling resources automatically based on the application’s needs. In a
What is a serverless application? Explain Microsoft Azure Functions
A serverless application is a type of application that is designed to run on a cloud computing platform, where the cloud provider takes care of managing the underlying infrastructure and scaling resources automatically based on the application’s needs. In a
Rules to redirect www to the parent domain
Install the URL Rewrite module (if it is not installed by default). http://www.iis.net/downloads/microsoft/url-rewrite After installing the module, use the below directive and put it inside the webconfig file Note: replace the domain name above from example.com with your desired domain
Custom Quick Actions on the LWC page when Modal is created using an Aura component
Quick Actions can’t be used with Lightning Web components. Let’s say that the record page has a button that, when clicked, integrates an Aura component that displays a modal. On the Lightning Web Component page, the coding is complete, and
Comparable Interface in Apex
When we have to sort a custom object list, based on a field, we try doing it by SOQL query ORDER BY but sometimes due to any constraint or some complex requirements we need to sort the list in Apex
Creating an Azure MySQL database and accessing it via MySql Workbench
Look for “MySQL” in the search bar at the top of the Microsoft official website and then choose Azure Database for MySQL. Create a MySQL database using the resource group, and don’t forget to change the default pricing tier. As
Azure Upload Blobs To Storage account using SAS URL (source)
//SASToken to pass to the Blobservice client for authentication to source storage account String sasToken = “SAS Token of source storage account ”; //connection string to connect to the destination storage account string connectionString =”connection string of destination storage account”;
