|
|
|
|
|
by victorbjorklund
1178 days ago
|
|
Yea, this is great. I used it alot for this. When you kind of know what you wanna do but you dont know the technical term. Like if you dont know it is called sharding but you know you wanna store stuff on several databases. Me:
I have a postgresql database but it has too much data in it. I wanna split the data in several databases. What is that called? GTP: Splitting a database into multiple smaller databases is known as database sharding. Sharding is a technique used to horizontally partition large databases across multiple servers or instances in order to distribute the workload and improve performance. Each shard is typically hosted on a separate physical or virtual machine and stores a subset of the total data, allowing for more efficient queries and faster data retrieval. Then i know what to google for |
|