Speed Up Queries with Nested Scopes in Rails

In my recent project, I was working with scopes across various models, and I needed to apply a nested scope for more advanced querying. To achieve this with performant query I used different concepts, this blog is about the same!! Lets revise the basics!Firstly, lets start with what is query optimisation ? Optimising queries is key … Continue reading Speed Up Queries with Nested Scopes in Rails

Non-Functional Testing: The Key to Robust Software Performance

In today’s fast-paced software development landscape, developers and testers not only focus on ensuring that the application performs the intended functionality but also strive to guarantee its reliability under various conditions. This is where non-functional testing comes in. Non-functional testing focuses on assessing aspects of software that are not related to specific functionalities but are equally crucial … Continue reading Non-Functional Testing: The Key to Robust Software Performance

Implementing Native Modules & Native Components in React Native

React Native allows developers to write cross-platform mobile applications using JavaScript and React. However, sometimes you need to interact with native functionality that isn’t available in React Native’s built-in APIs. This is where Native Modules and Native Components come into play. In this blog, we’ll explore: What are Native Modules and Native Components? How to implement Native Modules in … Continue reading Implementing Native Modules & Native Components in React Native