TypeORM - 索引


一般来说,索引是通过优化数据存储来优化数据库性能的过程。它用于快速定位和访问数据库中的数据。本节介绍如何在 TypeORM 中使用索引。指数分为不同类型。我们来一一详细了解一下。

列索引

我们可以使用@Index为特定列创建索引。考虑如下所示的Customer实体示例以及为firstName列定义的索引,

import {Entity, PrimaryGeneratedColumn, Column} from "typeorm"; 

@Entity() 
export class Student { 

   @PrimaryGeneratedColumn() 
   id: number; 
   
   @Index() 
   @Column() 
   firstName: string; 
   
   @Column() 
   lastName: string; 
   
   @Column() 
   age: number; 
   
   @Column() 
   address: string; 
}

@Index也允许指定索引的名称 -

@Index("Name-idx") 
@Column() 
firstName: string;

独特指数

要在列中指定唯一约束,请使用以下属性 -

{ unique: true }

例如,下面是为名称列指定唯一索引的代码 -

@Index({ unique: true }) 
@Column() 
firstName: string;

要为多列应用索引,我们可以直接在@Entity()之后指定它。示例代码如下 -

@Entity() 
@Index(["firstName", "lastName"]) @Index(["firstName", "lastName"], { unique: true })

空间索引

空间索引允许访问空间对象。MySQL 和 PostgreSQL 支持空间索引。要在列中启用空间索引,请添加以下属性 -

{ spatial: true }

空间类型有多种子类型,例如几何、点、线串、多边形等,例如,如果您想在列中添加点空间类型,请使用以下代码 -

@Column("point") 
@Index({ spatial: true }) 
point: string;

禁用同步

要禁用同步,请在@Index装饰器上使用以下选项-

{ synchronize: false }