mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-06-28 00:24:19 +00:00
3cf3fddf12
getSetting (WHERE key=?) runs on nearly every subscription request and job tick and had no index, so each lookup full-scans the settings table past the large xrayTemplateConfig blob. Add an index on settings.key; AutoMigrate creates it on existing DBs too. Includes a HasIndex test.
31 lines
925 B
Go
31 lines
925 B
Go
package database
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"gorm.io/driver/sqlite"
|
|
"gorm.io/gorm"
|
|
"gorm.io/gorm/logger"
|
|
|
|
"github.com/mhsanaei/3x-ui/v3/internal/database/model"
|
|
)
|
|
|
|
// settings.key is read on nearly every request and job tick (getSetting
|
|
// WHERE key=?); AutoMigrate must create the index so those lookups don't
|
|
// full-scan the settings table past the large xrayTemplateConfig blob. gorm
|
|
// creates missing indexes on migrate, so this also covers existing DBs.
|
|
func TestAutoMigrateCreatesSettingsKeyIndex(t *testing.T) {
|
|
db, err := gorm.Open(sqlite.Open(":memory:"), &gorm.Config{
|
|
Logger: logger.Default.LogMode(logger.Silent),
|
|
})
|
|
if err != nil {
|
|
t.Fatalf("open sqlite: %v", err)
|
|
}
|
|
if err := db.AutoMigrate(&model.Setting{}); err != nil {
|
|
t.Fatalf("automigrate: %v", err)
|
|
}
|
|
if !db.Migrator().HasIndex(&model.Setting{}, "idx_settings_key") {
|
|
t.Errorf("expected idx_settings_key to exist after AutoMigrate")
|
|
}
|
|
}
|