Playwrite + Lighthouse

if the answer to all the above questions is Yes! then, Today, We will understand how we can make use of Google lighthouse to test the performance benchmark of the webpage and steps on how we can integrate with the current playwright tests. Git Original link: https://vinayksharma.medium.com/lighthouse-integration-with-playwright-d2b58386f77

GORM FindInBatches

FindInBatches allows querying and processing records in batches. This is especially useful for handling large datasets efficiently, reducing memory usage and improving performance. With FindInBatches, GORM processes records in specified batch sizes. Inside the batch processing function, you can apply operations to each batch of records. // Processing records in Read more…