@wdwmagic Given that you are my "go to" Disney news site, the moment I hear of an Android app being released, it will be an immediate download. I'd even be more than happy to pay a subscription fee to support development. Either way, keep up the good work! 😊
Rider 2025.1 has just landed!
This release introduces some powerful updates, including:
🤖 New free tier for JetBrains AI features
📍 Initial support for C# 14 preview features
🪢 Remote development on Windows hosts
🗂️ New Files view in the Solution Explorer for full repo visibility
🕹️ Unity Profiler integration
✨ …and much more!
Get all the details here: https://t.co/jGPgKQvW1I
#dotnet10 #csharp #gamedev
21 years ago today, the last film in the greatest trilogy ever made was released.
Lord of the Rings: Return of the King
We will never see the likes of it again.
What is the simplest way to improve 𝗔𝗦𝗣 .𝗡𝗘𝗧 𝗖𝗼𝗿𝗲 𝗽𝗲𝗿𝗳𝗼𝗿𝗺𝗮𝗻𝗰𝗲?
Caching can significantly improve the performance and scalability of your application.
You can introduce a memory cache for frequently requested data.
It reduces the work required to generate content.
But what type of data should you cache?
Caching works best with data that changes infrequently and is expensive to generate.
Think of any heavy query you have running on the database.
ASP .NET Core supports several different caches.
The simplest cache is based on the IMemoryCache.
But it only makes sense if you have a single web server.
IMemoryCache represents a cache stored in the memory of the web server.
Your only limit is the available RAM on the server. And memory is cheap.
Unfortunately, caching introduces another set of problems:
- Stale cache data
- Cache invalidation
- How/what to cache
More challenges for you to solve... Great!
If you like this - I write about software engineering & architecture every Saturday. 29,000+ people read it for practical guidance to accelerate their skills.
Join here (it's free) → https://t.co/S3OBDGSLNl
Would you consider using an in-memory cache for your application?
P.S. REPOST - teach your network how to use caching in ASP .NET Core. ♻️