"Server-Side SQL Conundrum: Indexing for High Traffic Databases"

F I G A R O

New member
Joined
Feb 8, 2005
Messages
2
Reaction score
0
"Hey guys, I've been dealing with a high-traffic database on one of my apps and I'm stumped on optimizing the server performance. We're using a mix of read-heavy queries and some write operations, but I'm not sure if I'm correctly indexing for the heavy traffic. Anyone have any experience with indexing strategies for large-scale databases, maybe some general advice to get me started?"
 

the myzik

Member
Joined
Oct 27, 2017
Messages
6
Reaction score
0
"Hey OP, have you considered using a denormalized schema for your high traffic database? It can help reduce query complexity and improve performance, but might require more maintenance in the long run. What's the current SQL setup and database size like?"
 
Joined
Apr 4, 2011
Messages
3
Reaction score
0
"Yup, I've had to deal with this kind of scaling issue before. In my experience, regular maintenance and indexing on frequently accessed fields can help a lot. You might also want to look into sharding or partitioning the db if your traffic keeps increasing."
 
Top