Durable Entities bring actor-model programming to Azure Functions. Store state reliably without a database. Entity Example Calling Entities Use Cases Shopping carts Game state Rate limiting counters Aggregations
Read more โMonth: May 2020
SQL Server 2019: Intelligent Query Processing in Action
Intelligent Query Processing in SQL Server 2019 automatically optimizes queries. Here’s how it works. Features Batch mode on rowstore: Analytics queries faster Memory grant feedback: Auto-adjust memory Table variable deferred compilation: Better cardinality Approximate query processing: Fast approximations Approximate Count Enable for Database References IQP Documentation
Read more โVue.js Performance Optimization Techniques
Vue.js is fast by default, but large apps can slow down. Here are optimization techniques I use. Lazy Loading Routes v-once for Static Content Virtual Scrolling For long lists, use vue-virtual-scroller to render only visible items. Key Tips Use computed properties (cached) Avoid watchers when computed works Use v-show vs v-if appropriately Keep components small
Read more โKafka Streams: Real-Time Data Processing
Kafka Streams lets you process data in real-time directly within Kafka. No separate cluster needed. Key Concepts KStream: Unbounded stream of records KTable: Changelog stream (latest value per key) GlobalKTable: Replicated across all instances References Kafka Streams
Read more โAzure Static Web Apps: The New JAMstack Platform
Azure Static Web Apps combines static hosting with serverless APIs. Perfect for JAMstack and SPAs including Blazor. Features GitHub Actions integration Free SSL certificates Global CDN distribution Integrated Azure Functions API Authentication providers built-in Deploy from GitHub References Static Web Apps Docs
Read more โBuilding Your First Blazor WebAssembly App
Let’s build a complete Blazor WebAssembly application step by step – a task manager with CRUD operations. Project Structure A Simple Component References Blazor Tutorial
Read more โ