惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 三生石上(FineUI控件)
月光博客
月光博客
S
SegmentFault 最新的问题
有赞技术团队
有赞技术团队
Stack Overflow Blog
Stack Overflow Blog
Engineering at Meta
Engineering at Meta
T
The Blog of Author Tim Ferriss
The GitHub Blog
The GitHub Blog
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
IT之家
IT之家
宝玉的分享
宝玉的分享
A
About on SuperTechFans
Vercel News
Vercel News
P
Proofpoint News Feed
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 【当耐特】
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
V
Visual Studio Blog
Jina AI
Jina AI
Y
Y Combinator Blog
T
Tailwind CSS Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Last Week in AI
Last Week in AI

Stonecharioteer on Tech

I Traced My Traffic Through a Home Tailscale Exit Node What Was I Reading Last? In Three Not-So-Easy Pieces Dogfooding Is Hard Code blocks in your books, finally GoForGo v0.9.0 Merrilin - We built an app to read books I use a Macbook now Data Structures & Algorithms - Preparing for Interviews Using a local DNS namespace for local service discovery Direction KOllector - Publishing KOReader Highlights gbt: branches touched in the last 24 hours A Soiree into Symbols in Ruby Some Smalltalk about Ruby Loops Ruby Blocks Returning from Ruby Blocks, Procs and Lambdas My Linux Laptop Finally Works: How Claude Helped Me Fix Years of Annoyances TIL: Watchexec - Modern File Watching for Development Workflows A Less Busy Mind GoForGo - Learn Go through live examples Migrating My Old Blog to Hugo with Claude The Qtile Window Manager: A Python-Powered Tiling Experience Read the RFCs that Built the Internet Py-x-Protobuf - Or How I Learned to Stop Worrying and Love Protocol Buffers Python Reverse a List New Beginnings Leaving ChainSafe Systems Screen Lock for Cinnamon Desktop using Zenity and Terminal Commands Crews Not Teams A System for Getting Better at LeetCode
TIL: Breaking PostgreSQL at Scale and LeetCode Problem Pa...
2021-04-07 · via Stonecharioteer on Tech

Database Scaling

Breaking PostgreSQL at Scale

Key PostgreSQL Scaling Insights

  • Connection Pooling: Critical for high-concurrency applications
  • Query Optimization: Index strategy becomes crucial at scale
  • Partitioning: Table partitioning for managing large datasets
  • Replication: Read replicas and failover strategies
  • Monitoring: Essential metrics for identifying bottlenecks

Algorithm Learning

LeetCode Problem Patterns

  • GitHub - SeanPrashad/leetcode-patterns
  • Curated list of LeetCode questions grouped by algorithmic patterns
  • Organized approach to learning problem-solving techniques
  • Helps identify common patterns across different problems

Pattern Categories

  • Two Pointers: Array and string manipulation problems
  • Sliding Window: Substring and subarray problems
  • Dynamic Programming: Optimization and counting problems
  • Tree Traversal: Binary tree and graph problems
  • Backtracking: Combinatorial and constraint satisfaction problems

Key Takeaways

  • Database Scaling: Understanding bottlenecks before they become critical
  • Pattern Recognition: Algorithmic problem-solving benefits from pattern identification
  • Systematic Learning: Organized approaches to complex topics improve retention
  • Production Ready: Both database optimization and algorithmic thinking are essential for real-world applications

These resources provide both practical database management skills and fundamental algorithmic problem-solving techniques - essential for building scalable systems.