Skip to main content
Back to registry

mysql-best-practices

mindrally/skills

Installs706
Install command
npx skills add https://github.com/mindrally/skills --skill mysql-best-practices
Security audits
Gen Agent Trust HubPASS
SocketPASS
SnykPASS
About this skill
- Design schemas with appropriate storage engines (InnoDB for most use cases) - Optimize queries using EXPLAIN and proper indexing - Use proper data types to minimize storage and improve performance - Implement connection pooling and query caching appropriately - Follow MySQL-specific security hardening practices - Use InnoDB as the default engine (ACID compliant, row-level locking) - Consider MyISAM only for read-heavy, non-transactional workloads - Use MEMORY engine for temporary tables with high-speed requirements - Use smallest data type that fits your needs - Prefer INT UNSIGNED over BIGINT when possible - Use DECIMAL for financial calculations, not FLOAT/DOUBLE - Use ENUM for fixed sets of values - Use VARCHAR for variable-length strings, CHAR for fixed-length - Always use utf8mb4 charset for full Unicode support - Use AUTO_INCREMENT integer primary keys for InnoDB tables - Consider UUIDs stored as BINARY(16) for distributed systems - Avoid composite primary keys when possible - Use B-tree indexes (default) for most queries - Use FULLTEXT indexes for text search - Use SPATIAL indexes for geographic data - Consider covering indexes for frequently executed queries - Index columns used in WHERE, JOIN, ORDER BY, and GROUP BY - Place most selective columns first in composite indexes - Avoid indexing low-cardinality columns alone - Monitor and remove unused indexes - Use...

Source description provided by the upstream skill listing. Community reviews and install context appear in the sections below.

Community Reviews

Latest reviews

Sign in to review

No community reviews yet. Be the first to review.

Browse this skill in context
FAQ
What does mysql-best-practices do?

mysql-best-practices is listed in SkillJury, but the source summary is still sparse.

Is mysql-best-practices good?

mysql-best-practices does not have approved reviews yet, so SkillJury cannot publish a community verdict.

What agent does mysql-best-practices work with?

mysql-best-practices currently lists compatibility with codex, gemini-cli, opencode, cursor, kimi-cli, github-copilot.

What are alternatives to mysql-best-practices?

Skills in the same category include telegram-bot-builder, flutter-app-size, sharp-edges, iterative-retrieval.

How do I install mysql-best-practices?

npx skills add https://github.com/mindrally/skills --skill mysql-best-practices

Related skills

More from mindrally/skills

Related skills

Alternatives in Software Engineering