Have you ever wondered how caching could transform your React applications, making them faster? In this blog, We’ll explore how React Query utilizes caching to streamline data fetching and management, alongside various methods for effective caching. Additionally, we’ll uncover the power of optimistic updates, a key optimization technique rarely used. What is cache?In React Query, … Continue reading Leveraging React Query: A Data-Fetching Powerhouse
Tag: React
A Developer’s Tale: Conquering CORS in .NET
As developers, we often encounter hurdles that test our resilience and technical acumen. In this blog post, I shall share my experience navigating through two prevalent challenges in modern web development: Cross-Origin Resource Sharing (CORS) issues in .NET and prop drilling in ReactJS. My journey through these obstacles not only honed my problem-solving skills but … Continue reading A Developer’s Tale: Conquering CORS in .NET
Server side sorting and pagination using react-query and react-bootstrap-table-next (best practice)
In this blog, I will cover server side sorting and pagination using react-query and react-bootstrap-table-next. Generally, I prefer to use useQuery to get the data from the server, React Query manages query caching based on query keys. Query keys can be as simple as a string, or as complex as an array of many strings and nested objects. … Continue reading Server side sorting and pagination using react-query and react-bootstrap-table-next (best practice)
