Database: {{ selectedDatabase!.name }}
Total Index Size : {{ +stats.index_length | round }} Mb Total Data Size : {{ +stats.data_length | round }} Mb
Collation {{ collation }}
Copy Name
speed Performance Tips • If you do >10req/sec, use unix socket or try to reduce network latency
• Check resource (CPU, RAM, Disk I/O) usage of the server and allocate more
• Use cloud hosted databases if you don't have time dedicated to infrastructure
• Use the assistant for more advanced optimizations of the database structure or the server tuning
• Sharding, load balancing and replication can help but are not simple to implement and maintain
health_and_safety Security Tips • Avoid exposing database to public network, prefer SSH tunnel
• Do regular backup of your database to an external provider
• Follow the data rules apply (personal data encryption, strong password encryption with salt, etc)