Resources  
  • Annotations used with Spring Boot ApplicationsJun 28, 2024. Spring Boot simplifies Java application development with powerful annotations like @SpringBootApplication, @RestController, and @Service. These annotations automate configuration, enable RESTful services, manage dependencies, and support robust transaction and error handling.
  • Top Java Spring Boot Scenario-Based Interview QuestionsJun 24, 2024. Preparing for a Spring Boot interview? Master scenario-based questions covering database migrations with Flyway, REST API exception handling using @ControllerAdvice, Spring Security for authentication, and RestTemplate for consuming RESTful services.
  • Caching Strategies in Angular and .NET CoreJun 24, 2024. Caching enhances web application performance and scalability. In Angular, use HTTP interceptors, service workers, local storage, or IndexedDB for client-side caching. In .NET Core, leverage in-memory or distributed caching and response caching middleware for server-side caching.
  • How to do .NET 8 Migration with Existing Tools?Jun 19, 2024. Microsoft's technology ecosystem spans desktop, web, and mobile apps, each requiring specific frameworks. To upgrade applications effectively, use Visual Studio 2022 with .NET Framework or Core, and the Upgrade assistant extension.
  • Understanding Caching in PythonJun 18, 2024. Understanding Caching in Python" explores the concepts and techniques of caching to optimize performance in Python applications. Learn how caching improves data retrieval speed, reduces computational load, and enhances overall efficiency.
  • Performance Optimization in ASP.NET MVC ApplicationsJun 15, 2024. Performance optimization in ASP.NET MVC involves techniques like efficient data access, using Entity Framework wisely, implementing caching, using async/await for non-blocking operations, minimizing ViewState, bundling and minifying resources, enabling GZIP compression, optimizing queries.
  • The Art of JavaScript Hoisting: Understanding the Ins and OutsJun 11, 2024. Discover the intricacies of JavaScript hoisting in this comprehensive guide. Understand how JavaScript handles variable and function declarations, the impact of scope, and the best practices to avoid common pitfalls.
  • SQL Query Execution Understanding Process and PerformanceJun 11, 2024. Understanding the SQL query execution order—from FROM and JOIN to WHERE, GROUP BY, HAVING, SELECT, ORDER BY, and LIMIT/OFFSET—is crucial for optimizing queries. Key techniques include indexing, optimizing joins, early filtering, avoiding SELECT *, and using subqueries, CTEs, caching, and materialized views to enhance performance.
  • Handling Millions of Records with PostgreSQLJun 07, 2024. Handling millions of records with PostgreSQL requires effective strategies and best practices. Key techniques include query optimization, indexing, partitioning, and data sharding. Implementing bulk loading, parallel processing, and regular vacuuming ensures high performance, scalability, and efficient data management.
  • Convert an Embedded Resource into an XML File in WPF C#Jun 06, 2024. When working with embedded resources in a WPF application, it is important to follow specific steps to guarantee that your resources are properly included in the assembly and can be accessed during runtime.
  • Understanding Decorators in PythonJun 04, 2024. In this article, we explore Python decorators, which allow you to modify the behavior of functions without altering their source code. By using decorators, you can add functionality, log information, cache results, and more.
  • Introducing HybridCache The Future of .NET CachingJun 04, 2024. HybridCache bridges gaps in .NET's IDistributedCache and IMemoryCache, introducing advanced capabilities like stampede protection and configurable serialization. It simplifies caching with a unified API for both in-process and out-of-process caching, reducing complexity and enhancing performance.
  • How to Remove Extra Column from DataGrid WPF ControlMay 31, 2024. The WPF DataGrid often displays an extra column due to default behavior. This issue arises when the source data contains fewer columns than displayed. By adjusting the XAML code and setting the ColumnWidth attribute to "*", the extra column can be removed, ensuring proper alignment of data in the DataGrid.
  • Common Types of Cache ArchitecturesMay 28, 2024. Explore various caching architectures: client-side, server-side, CDN, distributed, database, and application-level caching. Each offers advantages like reduced latency and improved performance but comes with challenges like complexity and consistency management.
  • Understanding the Singleton Pattern in C#May 27, 2024. The Singleton pattern is one of the most commonly used design patterns in software engineering. It falls under the category of creational patterns and ensures that a class has only one instance while providing a global point of access to that instance.
  • Learn About ASP.NET Core FiltersMay 14, 2024. ASP.NET Core Filters offer a modular approach to handle cross-cutting concerns like authorization, caching, and logging. Learn about each type with clear examples for better application management.
  • .NET Core Performance: Caching, Lazy Loading, indexing & profilingMay 01, 2024. This article explores the world of performance optimization in .NET Core applications and SQL queries. Discover the science behind ensuring your software runs smoothly and efficiently through techniques such as caching, lazy loading, indexing, and profiling. Learn how to boost your application's performance and deliver an exceptional user experience.
  • How to Integrate Instant Plugins in the Canvas App?Apr 29, 2024. Dataverse Accelerator by Microsoft introduces low-code plug-ins for real-time business logic workflows in Canvas apps. Learn step-by-step integration of Instant Plugin with Power Fx in Dataverse environment. Test and utilize the Instant Plugin for efficient app development.
  • Caching Strategies in ASP .NET CoreApr 25, 2024. ASP.NET Core offers diverse caching strategies, including in-memory, distributed, response, output, and donut caching. Choose wisely based on data needs, scalability, and granularity for optimal performance.
  • Implement Memory Cache with Sliding Expiration in .NETApr 24, 2024. This guide illuminates memory caching's efficacy in enhancing data retrieval by storing frequently accessed data in memory. Utilizing ConcurrentDictionary in C#, it illustrates the creation of a sliding expiration cache.
  • Optimizing Security & Performance in .NET Core Apps for Heavy LoadsApr 24, 2024. Secure and optimize your .NET Core apps for heavy traffic with strategies like load balancing, caching, authentication, encryption, and monitoring. Implementing these ensures both security and performance under intense user loads."
  • Implementing In-Memory Cache in ASP.NET Core Web APIApr 24, 2024. Caching is a crucial technique for improving the performance and responsiveness of web applications by storing frequently accessed data in memory. In this article, we'll walk through a complete practical example of implementing and using an in-memory cache in an ASP.NET Core Web API project.
  • Utilization of DataGrid VS ListBox in WPF C#Apr 22, 2024. In WPF (Windows Presentation Foundation), the DataGrid and ListBox are two powerful controls that serve different purposes and are suitable for different scenarios
  • Alibaba Cloud CDN: Enhancing Web Performance GloballyApr 16, 2024. Unleash website speed with Alibaba Cloud CDN! Explore its benefits, architecture, and how it works. Discover the difference between CDN and DCDN for optimal content delivery. #AlibabaCloud #CDN
  • Let's Create WPF Blazor Hybrid AppApr 15, 2024. Unlock the potential of WPF and Blazor by combining their strengths in a hybrid application. Let's seamlessly blend the rich, desktop-centric features of WPF with the modern, web-enabled capabilities of Blazor to create a versatile and powerful application that delivers the best of both worlds.
  • How Can You Handle Data Caching in Vue.js Applications?Mar 29, 2024. Handling data caching in Vue.js is essential for boosting performance and minimizing server requests. Techniques include browser storage, Vuex, Axios interceptors, memoization, service workers, and CDN caching for optimal performance and user experience.
  • Optimizing Application Performance In-Memory Cache in .NET CoreMar 27, 2024. In this article we will see how we can improve the performance of the application using IMemory Cache in .NETcore application.
  • Exploring Inter-Process Communication in WPF Using Named PipesMar 19, 2024. In a WPF application, inter-process connectivity typically involves communication between different components or modules within the same application or between separate WPF applications running on the same system or across different systems.
  • Static Resource vs Dynamic Resource in WPFMar 11, 2024. Delve into WPF's resource binding, exploring both static and dynamic approaches. Static binding offers performance benefits and compile-time validation, while dynamic binding allows runtime updates, enabling dynamic theming. Happy coding!
  • Exploring Various Triggers and Their Applications in WPFMar 11, 2024. Triggers play a crucial role in defining interactions and behaviors within the WPF user interface. This article explores the various types of triggers in WPF and their implementation within the MVVM pattern. Property triggers, data triggers, event triggers, and multi-data triggers.
  • Leveraging Compiled Queries for Enhanced Performance in LINQMar 09, 2024. Compiled queries in LINQ allow developers to pre-compile LINQ queries into executable delegates, reducing the overhead of query compilation and optimization. By caching the compiled query execution plan, compiled queries improve the performance of frequently executed or complex queries in C# applications.
  • Understanding Caching in .NET With ExampleFeb 28, 2024. Caching is a cornerstone in .NET development, enhancing application performance and scalability. This article explores its significance, and diverse caching techniques, and offers a practical example for efficient implementation in .NET applications.
  • Creating a Personalized Waiting Window in .NET 6, 7, 8 WPFFeb 26, 2024. A custom loader in a WPF (Windows Presentation Foundation) .Net 6,7,8 application serves the purpose of indicating to the user that the application is performing a task or operation that may take some time to complete.
  • CesiumJS Sample in WPF ApplicationFeb 06, 2024. This project streamlines CesiumJS integration into a WPF app, leveraging powerful geospatial visualization. Learn to inject KML files, define locations, create lines, and manage KML loading. Follow the steps to embed CesiumJS, set up HTML, and integrate with WPF using CefSharp.
  • Implementing a Custom Loader in WPF with MVVMFeb 06, 2024. A custom loader in a WPF (Windows Presentation Foundation) application serves the purpose of indicating to the user that the application is performing a task or operation that may take some time to complete.
  • Caching Strategies Blueprint: Accelerate Data Retrieval PerformanceJan 24, 2024. This article explores the significance of caching in software development, emphasizing its role in enhancing data retrieval efficiency. It covers caching principles, trade-offs, cache hierarchy, hits and misses, and cache eviction policies. Database caching and CDN acceleration, are discussed, along with scenarios where caching may not be beneficial.
  • Validation Rules in WPFJan 19, 2024. We need validation rules to play a crucial role in maintaining data accuracy and consistency within an application. Learn to enhance the WPF user experience by implementing email pattern-matching validation.
  • How to Develop a Custom Message Box in .NET 6,7,8 for WPF?Jan 18, 2024. As used in software development, the term "custom message box" describes a dialog box or pop-up window that is created and implemented with unique features, looks, and functionality instead of depending on the built-in or operating system-provided standard message box.
  • Implementing IP Rate Limiting in ASP.NET Core MVCJan 18, 2024. IP rate limiting is a crucial aspect of web application security that helps prevent abuse, protect against brute force attacks, and ensure fair resource usage. In this article, we will walk through the process of implementing IP rate limiting in an ASP.NET Core MVC application using middleware.
  • Understanding and Managing Server-Side (Output) Caching in .NetJan 15, 2024. IIS employs System.Web.Caching for efficient output caching. Utilize HttpRuntime.Cache.Insert for CRUD operations, specifying key, value, and optional parameters like dependencies, absolute expiration, and sliding expiration for optimization.
  • How to scale Spring Boot applications with NCache Java EditionJan 08, 2024. From this article, you will learn how to scale spring boot applications with NCache Java Edition. Spring Boot for efficient and scalable Java applications. Learn to integrate NCache, a distributed in-memory caching solution, for optimal performance and enhanced scalability.
  • What is NCache Playground and How to Use It?Dec 18, 2023. As software developers, we may come across different requirements which require us to try and work with different technologies and frameworks. But this comes with its own learning curve - installing tech, learning the nuances and then adapting to work with the new tech.
  • NCache Security: A Comprehensive Approach to Protecting Your Cached DataDec 08, 2023. From this article, you will learn a comprehensive approach to protecting your cached data. In the realm of distributed caching, safeguarding cache nodes is crucial for protecting data and infrastructure. NCache, a robust distributed caching solution, offers comprehensive security features. This article guides you through configuring security levels in NCache for optimal data safety.
  • Creating a "League of Legends" Inspired Play Button in WPFDec 03, 2023. This article provides a detailed explanation and analysis of developing a PLAY button inspired by the game "League of Legends" using pure WPF technology.
  • Azure Redis Cache with C# for High-Performance ApplicationsNov 02, 2023. This article explanation of Azure Redis Cache and its integration with C# is thorough and provides a good understanding of the topic. You have covered the essential steps to set up Azure Redis Cache, retrieve access keys, and integrate it with C# using the StackExchange.Redis library. Additionally, your provided code example illustrates how to connect to Azure Redis Cache and refresh the expiration time of a cache key.
  • Output Caching in ASP.NET CoreOct 25, 2023. Learn the benefits of output caching, a powerful web optimization technique. Understand its types, including client-side, proxy, and server-side caching, and explore its implementation in ASP.NET Core.
  • How Caching Improves Data Access Performance?Oct 23, 2023. In this article, we explore caching's role in enhancing data access performance. Caching involves storing frequently accessed data, reducing latency and database load. Despite its advantages, challenges like cache invalidation, size management, and policy selection need consideration for effective implementation.
  • ASP.NET Core In-Memory Caching ExplorationOct 20, 2023. Caching in web applications, like ASP.NET Core, enhances performance by storing frequently accessed data in memory. This article explains its benefits, types, and practical usage for database data.
  • How to Implement Continuous Querying with NCache?Oct 20, 2023. In this detailed article, let us discuss how we can implement continuous querying with NCache.
  • Integrating Redis Cache In .NET Core 6Oct 11, 2023. Integrating Redis Cache in .NET Core 6 provides efficient data storage and retrieval capabilities for applications. This step-by-step guide with examples demonstrates how to seamlessly incorporate Redis Cache into your .NET Core 6 applications. Learn how to set up a Redis server, configure .NET Core projects to use Redis as a caching mechanism, and utilize various caching features. This tutorial covers essential concepts, including caching strategies, key expiration, and distributed caching, enabling you to optimize your application's performance and scalability.
  • Building a Microservices API Gateway with YARP in ASP.NET Core Web APIOct 03, 2023. Building a microservices API Gateway with YARP in ASP.NET Core Web API provides a flexible and scalable solution for managing and routing traffic in a microservices architecture. By incorporating features such as service discovery, authentication, authorization, load balancing, rate limiting, and logging, you can create a robust and secure gateway that orchestrates communication between diverse microservices.
  • Advanced Sorting and Searching in ASP.NET Core Web APISep 15, 2023. Sorting and searching are essential functionalities in many ASP.NET Core Web API applications. To implement advanced sorting and searching in your API, you can follow these steps:
  • In-Memory Caching in .NET: Boosting Performance with EaseSep 09, 2023. Explore the power of in-memory caching in .NET for enhanced application performance. Learn about its benefits, how to use MemoryCache, cache policies, and cache dependencies. Optimize your .NET applications for faster response times and reduced resource usage.
  • Optimizing ASP.NET Core Web API Performance with Azure Cache and CDNSep 05, 2023. Using Azure Cache for Redis or a Content Delivery Network (CDN) can indeed help improve API response times and reduce the load on your server. In this example, I'll provide code snippets and steps to integrate Azure Cache for Redis and Azure CDN into an ASP.NET Core Web API application.
  • Utilizing Browser Cache and Cookies in React.js ApplicationsSep 02, 2023. Here in this article we will learn how to implement browser cache and cookies for react js application.
  • Cache Notifications and Event-driven Architecture with NCacheAug 27, 2023. In this article, let us discuss the importance of cache notifications in building an event driven application and how we can implement such a mechanism with an example in NCache
  • Optimizing Performance for Your .NET Core ApplicationAug 24, 2023. In this article, we will see the best practices which can improve the performance of your .NET core application
  • Performance Optimization in ASP.NET Core: Strategies and Code ExplanationAug 21, 2023. Performance Optimization in ASP.NET Core involves employing various strategies to enhance the speed, responsiveness, and efficiency of web applications. This article provides insights into essential optimization techniques, supported by clear code explanations. From leveraging caching and asynchronous programming to minimizing database queries and utilizing content delivery networks (CDNs), these strategies ensure smoother user experiences and streamlined application performance. By delving into real-world examples, this article equips developers with the knowledge to make informed decisions when fine-tuning their ASP.NET Core applications for optimal performance.
  • Boosting Workflow Efficiency with Power Automate & CachingAug 16, 2023. Caching is a crucial technique for improving the performance of ASP.NET Core Web APIs. In this example, I'll walk you through implementing response caching, distributed caching using Redis, and in-memory caching in an ASP.NET Core Web API.
  • Implementing Real-Time Cache Sync with NCache and SignalRJul 27, 2023. From this article, you will learn how to implement the real-time cache sync with NCache and SignalR
  • Efficient Image Optimizer Using C# WPFJul 18, 2023. This article explores the process of building an image optimizer using C# WPF (Windows Presentation Foundation).
  • Caching Best Practices for ASP.NET Core Microservices with NCacheJul 11, 2023. Let us learn about some of the important key considerations and best practices for implementing an efficient caching in .NET Core Microservices using NCache
  • What is Response Caching in ASP.NET Core?Jul 11, 2023. Accessing information efficiently needs responsive caching. The blog discusses how response caching in ASP.NET is used to increase that accessibility.
  • NCache and Caching Patterns: Full Cache, Cache Aside, and Read-Through CachingJun 13, 2023. From this article, you will learn about NCache and Caching patterns like Full Cache, Cache Aside, and Read-Through Caching.
  • Backing Up Cache Data Using NCacheMay 24, 2023. Backing up cache data using NCache refers to the process of creating copies of the cached data stored in NCache and storing them in a secondary location for data protection and disaster recovery purposes. NCache is an in-memory distributed caching solution that helps improve application performance by storing frequently accessed data in memory, reducing the need to retrieve data from the primary data source repeatedly.
  • Implementing Caching in Spring BootMay 03, 2023. How to implement caching in a spring boot application
  • Caching Strategies In .NET Core - Using Distributed Cache, Memory Cache And Response CacheApr 12, 2023. In this article, you will learn about Caching Strategies in .NET Core: Using Distributed Cache, Memory Cache and Response Cache.
  • Using Localstorage To Cache Data In Blazor ApplicationsMar 19, 2023. In this article, we are going to learn how to implement local storage in Blazor
  • ASP.NET Core Application With NCache Response CachingMar 19, 2023. In this article, you will learn how to integrate NCache Response Cache in our ASP.NET Core application.
  • Using Power BI To Update DataJan 23, 2023. In this article, you will learn how to use Power BI to update data.
  • Azure Redis Cache Introduction And Implementation Using .NET Core 6 Web APIJan 16, 2023. In this article, you will learn about Azure Redis Cache Implementation using .NET Core 6 Web API.
  • Blazor WASM - Cache Storage Using JavaScriptDec 07, 2022. This is all about working with a browser cache storage in blazor web assembly using JavaScript.
  • How To Clear Your Cache And Hard Refresh Your BrowserNov 28, 2022. In this article, you will learn how to clear your cache and hard refresh your browser.
  • Redis Cache And Its Different Ways Of InstallationNov 14, 2022. In this article, you will learn about redis cache and its different ways of installation.
  • Live Chart (Streamed Data) Update Using OxyplotNov 11, 2022. This article demonstrates how to update the chart with newly streamed data using Oxyplot.
  • Angular Performance (2), Caching - Service WorkerNov 09, 2022. This article is to discuss Angular Performance, Caching --- Service Worker
  • Caching In RavenDBOct 19, 2022. Caching — what it is, how it is handled in RavenDB, and how you can optimize your database performance with the right caching strategy.
  • Filter Data On XAML Grid In WPFOct 18, 2022. There are different ways to filter data in the XAML grid, but I'm just showing you how you can easily filter your data in the XAML grid by clicking the checkbox.
  • How To Add Custom Add-Ins To MS WordOct 07, 2022. This article shows you how to add add-ins to word desktop.
  • How To Add Add-Ins In PowerPoint Sep 20, 2022. In this article, you will learn how to add custom add-ins.
  • CRUD Web API Service Call Function In WPF ApplicationSep 15, 2022. In this article, you will learn about CRUD Web API Service Call Function In WPF Application.
  • Progress Bar In WPFAug 30, 2022. In this article, you will learn about Progress Bar in WPF.
  • Visibility=Collapsed Vs Visibility=Hidden In WPFAug 29, 2022. In this article, you will learn about Visibility=Collapsed Vs. Visibility=Hidden In WPF.
  • Using NCache As IdentityServer4 Cache And StoreAug 25, 2022. From this article, you will learn how to use NCache as IdentityServer4 Cache and Store.
  • Syncing Cache In ADO.NET Using NCache In .NET 6 With SQL ServerAug 23, 2022. In this article, you will learn about syncing Cache In ADO.NET Using NCache In .NET 6 With SQL Server.
  • WPF Simplified - The Idea That Became A KnowledgeAug 21, 2022. This is the journey of the book I got the opportunity to be part of.
  • How To Deploy Excel Add-ins To Your OrganizationAug 12, 2022. This article show you how to deploy excel add-ins in your organization.
  • Working With ASP.NET 6 IDistributedCache Provider For NCacheJul 06, 2022. In this article, you will learn how to work with ASP.NET 6 IDistributedCache Provider for NCache.
  • How To Add Custom Add-Ins To ExcelJul 05, 2022. In this article, you will learn how to add Excel add-ins.
  • Implementation Of The Redis Cache In The .NET Core APIJun 21, 2022. In this article, you will learn how to implement of the Redis Cache in the.NET Core API.
  • Implement In-Memory Cache In The .NET Core APIJun 20, 2022. In this article, you will learn how to implement In-Memory Cache in the NET Core API.
  • Converters In WPFJun 20, 2022. In this article, you will learn about Converters in WPF.
  • Sync Cached Data With Cosmos DB Using NCacheJun 16, 2022. From this article you will learn how to sync the data update in Cosmos DB with NCache using Azure Functions
  • How To Deploy PowerPoint Add-ins To Your OrganizationJun 15, 2022. This article shows you, how to deploy PowerPoint add-ins.
  • Navigation In WPF And MVVM Using Tab controlsJun 14, 2022. To manage the content of the graphical region in WPF, there is some tools (like PRIM) that allows to have a main region which doesn't change during the navigation, and a dynamic one that will hold the content of the controls. In some simple cases, we want to perform it in a simple way without using any tool. Fortunately, the Wpf Material design Toolkit http://materialdesigninxaml.net/ is providing great items that can be used as navigation menus. In this article I'm going to show you how to create an application and navigate between views using The tab control of the Material design toolkit in WPF
  • Caching In Entity Framework Core Using NCacheJun 10, 2022. It will be explained in this article how to integrate Entity Framework Core with a caching engine using NCache. The article will be given a practical example of how we could set up our Entity Framework Core in a Console application and how to make use of NCache to make faster requests to the database with its native in-memory distributed cache.
  • Caching In Entity Framework (EF) Core Using NCacheJun 03, 2022. In this article, you will lean about caching in Entity Framework (EF) Core using NCache.
  • How To Deploy Word Add-Ins To Your OrganizationJun 03, 2022. This article show you how to deploy word add-ins to your organization.
  • Create a Simple Node Cache With Express Node JSMay 11, 2022. This article provides a sample application uses the Node Cache with explanation
  • How To Create Excel Add-InsMay 10, 2022. in this article i will show you how to create Excel Add-ins

About Caching-in-WPF

NA

OUR TRAINING