Best of MySQLApril 2023

  1. 1
    Article
    Avatar of planetscalePlanetScale·3y

    Pagination in MySQL

    There are two primary ways to paginate in MySQL: offset/limit and cursors. If you sort your rows by a column that is not unique, MySQL gets to decide which order to return these rows in. The easiest way to produce deterministic ordering is to order by a unique column because every value will be distinct.

  2. 2
    Article
    Avatar of amplicationAmplication·3y

    SQL Versus NoSQL Databases: Which to Use, When, and Why

    The right choice means we can scale up an application quickly and handle increasing user requests without encountering problems. Choosing the right database for your application is no mean feat, given the number of available databases. There are many differences between SQL and NoSQL databases, such as how they handle relational data, their query languages.

  3. 3
    Article
    Avatar of phProduct Hunt·3y

    SQL Chat - ChatGPT powered SQL client for Postgres, MySQL & SQL Server

    SQL Chat - ChatGPT powered SQL client for Postgres, MySQL & SQL Server. Launch archive Most loved launches by the community Newsletter The best of Product Hunt, everyday Popular products in...

  4. 4
    Article
    Avatar of planetscalePlanetScale·3y

    Build a Rust API with Rocket, Diesel, and MySQL

    Rust has made itself heir apparent to the C and C++ dynasty by delivering memory safety without compromising speed. Rust does away with a garbage collector, which gives it an additional performance boost. This guide assumes a basic knowledge of Rust, so if you're new to the language, it may be helpful to review the Rust book.

  5. 5
    Article
    Avatar of medium_jsMedium·3y

    Keeping an Eye on MySQL with Health Checks

    Learn about MySQL health checks, cache performance metrics, CPU utilization, and InnoDB cache hit rate.