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

推荐订阅源

G
Google Developers Blog
宝玉的分享
宝玉的分享
月光博客
月光博客
B
Blog
云风的 BLOG
云风的 BLOG
Google DeepMind News
Google DeepMind News
Engineering at Meta
Engineering at Meta
aimingoo的专栏
aimingoo的专栏
N
Netflix TechBlog - Medium
博客园_首页
GbyAI
GbyAI
人人都是产品经理
人人都是产品经理
A
About on SuperTechFans
Y
Y Combinator Blog
L
LangChain Blog
有赞技术团队
有赞技术团队
D
Docker
爱范儿
爱范儿
博客园 - 司徒正美
H
Hackread – Cybersecurity News, Data Breaches, AI and More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
酷 壳 – CoolShell
酷 壳 – CoolShell
Microsoft Security Blog
Microsoft Security Blog
D
DataBreaches.Net

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.