Tag: Testing

Database

Can MySQL Support Tens of Thousands of Concurrent Connections Without a Performance Collapse in Low-Conflict Scenarios Like TPC-C Testing?

MySQL can support tens of thousands of concurrent connections in low-conflict scenarios like TPC-C testing, provided optimizations such as thread pooling, connection pooling, and buffer pool tuning are employed. Proper hardware, query optimization, and careful system tuning are crucial for achieving high concurrency without performance degradation.

Cloud Native Micoservices

TDD, BDD, and ATDD

TDD, BDD, and ATDD Software development is an iterative process that involves writing code, testing it, and refining it until it meets the requirements. Test-driven development (TDD), behavior-driven development (BDD), and acceptance test-driven development (ATDD) are three methodologies that support this process. TDD, BDD, and ATDD are all methodologies used in software development for testing […]

Back To Top