search
HomeDatabaseMysql Tutorialwhat does myisam mean
what does myisam meanJun 28, 2020 am 09:56 AM
myisam

Myisam is the default storage engine before mysql5.1. It is based on older ISAM code, but has many useful extensions. Each MyISAM is stored as three files on disk. The name of each file starts with the name of the table and the extension indicates the file type.

what does myisam mean

myisam introduction

(Recommended tutorial: mysql tutorial)

MyISAM is the default storage engine (Before Mysql5.1 version). It is based on older ISAM code, but has many useful extensions. (Note that MySQL 5.1 does not support ISAM). Each MyISAM is stored as three files on disk. The name of each file starts with the name of the table, and the extension indicates the file type.

Detailed introduction

To explicitly indicate that you want to use a MyISAM table, please indicate it using the ENGINE table option:

CREATE TABLE t (i INT) ENGINE = MYISAM;

Note: Older versions of MySQL use TYPE instead ENGINE (for example, TYPE = MYISAM). MySQL 5.1 supports this syntax for backward compatibility, but TYPE is now deprecated, and ENGINE is the first usage.

Generally, the ENGINE option is unnecessary; unless the default has been changed, InnoDB is the default storage engine (after Mysql 5.1).

Some features of MyISAM storage engine

1. All data values ​​are stored in the low byte first.

This separates the data machine and operating system. The only requirements for binary portability are that the machine uses two's complement (as machines of the last 20 years have) and the IEEE floating point format (which is also completely dominant in mainstream machines). The only machines that don't support binary compatibility are embedded systems. These systems sometimes use special processors.

Storing the low bytes of data first does not seriously affect speed; bytes in data rows are generally unjoined, and reading unjoined bytes in one direction does not take more time than reading in the reverse direction. H. The code on the server that gets the column value is not as time-critical as other code.

2. Large files (up to 63-bit file length) are supported on file systems and operating systems that support large files.

3. Dynamically sized rows are less fragmented when deletions are mixed with updates and inserts. This is done automatically by merging adjacent deleted blocks and extending to the next block if it is deleted.

The above is the detailed content of what does myisam mean. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
MySQL储存引擎选型对比:InnoDB、MyISAM与Memory性能指标评估MySQL储存引擎选型对比:InnoDB、MyISAM与Memory性能指标评估Jul 26, 2023 am 11:25 AM

MySQL储存引擎选型对比:InnoDB、MyISAM与Memory性能指标评估引言:在MySQL数据库中,储存引擎的选择对于系统性能和数据完整性起着至关重要的作用。MySQL提供了多种储存引擎,其中最常用的引擎包括InnoDB、MyISAM和Memory。本文将就这三种储存引擎进行性能指标评估,并通过代码示例进行比较。一、InnoDB引擎InnoDB是My

如何使用MyISAM和InnoDB存储引擎来优化MySQL性能如何使用MyISAM和InnoDB存储引擎来优化MySQL性能May 11, 2023 pm 06:51 PM

MySQL是一款广泛使用的数据库管理系统,不同的存储引擎对数据库性能有不同的影响。MyISAM和InnoDB是MySQL中最常用的两种存储引擎,它们的特点各有不同,使用不当可能会影响数据库的性能。本文将介绍如何使用这两种存储引擎来优化MySQL性能。一、MyISAM存储引擎MyISAM是MySQL最常用的存储引擎,它的优点是速度快,存储占用空间小。MyISA

提高MySQL存储引擎读取性能的技巧和策略:MyISAM与InnoDB对比分析提高MySQL存储引擎读取性能的技巧和策略:MyISAM与InnoDB对比分析Jul 26, 2023 am 10:01 AM

提高MySQL存储引擎读取性能的技巧和策略:MyISAM与InnoDB对比分析引言:MySQL是最常用的开源关系型数据库管理系统之一,主要用于存储和管理大量结构化数据。在应用中,对于数据库的读取性能往往是非常重要的,因为读取操作是大部分应用的主要操作类型。本文将重点讨论如何提高MySQL存储引擎的读取性能,重点对比分析MyISAM和InnoDB这两个常用的存

MySQL储存引擎性能对比:MyISAM和InnoDB的读写性能对比实验MySQL储存引擎性能对比:MyISAM和InnoDB的读写性能对比实验Jul 25, 2023 pm 01:29 PM

MySQL储存引擎性能对比:MyISAM和InnoDB的读写性能对比实验引言:MySQL是一种广泛使用的关系型数据库管理系统。它支持多种储存引擎,其中两种最常用的引擎是MyISAM和InnoDB。本文将探讨这两种储存引擎的读写性能,通过实验对它们进行具体的对比。一、MyISAM引擎简介MyISAM引擎是MySQL的默认储存引擎,在早期版本中被广泛使用。它使用

如何通过MyISAM索引缓存来提高MySQL性能如何通过MyISAM索引缓存来提高MySQL性能May 11, 2023 pm 07:31 PM

MySQL是一款被广泛使用的开源关系型数据库管理系统。在处理巨大的数据量时,良好的性能是至关重要的。MyISAM索引缓存是MySQL的一个非常重要的特性,它可以大幅提高数据读取的速度和性能。在本文中,我们将深入探讨MyISAM索引缓存的工作原理以及如何配置和优化索引缓存来提升MySQL的性能。什么是MyISAM索引缓存?MyISAM是MySQL中的一种存储引

如何选择合适的MySQL储存引擎?比较MyISAM和InnoDB的优势与劣势如何选择合适的MySQL储存引擎?比较MyISAM和InnoDB的优势与劣势Jul 27, 2023 am 08:05 AM

如何选择合适的MySQL存储引擎?比较MyISAM和InnoDB的优势与劣势引言:MySQL是目前最受欢迎和广泛使用的关系型数据库管理系统。在MySQL中,我们可以选择不同的存储引擎来管理数据,以满足不同的需求。本文将重点介绍两种常用的存储引擎:MyISAM和InnoDB,并比较它们的优势和劣势。通过本文的阅读,你将了解如何根据实际需求选择合适的MySQL存

MySQL中InnoDB与MyISAM的对比分析MySQL中InnoDB与MyISAM的对比分析Jun 02, 2023 pm 04:16 PM

对比InnoDB与MyISAM1、存储结构MyISAM:每个MyISAM在磁盘上存储成三个文件。分别为:表定义文件、数据文件、索引文件。第一个文件的名字以表的名字开始,扩展名指出文件类型。.frm文件存储表定义。数据文件的扩展名为.MYD(MYData)。索引文件的扩展名是.MYI(MYIndex)。InnoDB:所有的表都保存在同一个数据文件中(也可能是多个文件,或者是独立的表空间文件),InnoDB表的大小只受限于操作系统文件的大小,一般为2GB。2、存储空间MyISAM:MyISAM支持支

探秘MySQL MyISAM引擎的性能优化策略探秘MySQL MyISAM引擎的性能优化策略Jul 25, 2023 pm 12:16 PM

探秘MySQLMyISAM引擎的性能优化策略引言:在MySQL数据库中,MyISAM引擎是一种常用的数据库引擎之一。它以其简单、易于管理和高性能的特点,广泛应用于各种数据库应用中。然而,随着数据库数据量的不断增长和查询访问的复杂度提高,MyISAM引擎的性能优化就变得非常重要。本文将探讨MyISAM引擎的性能优化策略,并通过实例代码加以说明。一、使用正

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function