最新公告
  • 欢迎您光临码农资源网,本站秉承服务宗旨 履行“站长”责任,销售只是起点 服务永无止境!加入我们
  • 忽略 Doctrine DBAL 4 上的自定义索引

    忽略 doctrine dbal 4 上的自定义索引

    你可以使用实体文件上的 #[ormindex(fields: [‘fieldname’] 属性创建数据库索引,doctrine 会为你完成剩下的工作来管理索引,但我不会谈论这个。

    随着您的项目增长或需要特定要求,您可能需要使用自定义索引类型,如 gist、gin、brin 等 (https://www.postgresql.org/docs/current/indexes-types.html)。 doctrine 不支持创建开箱即用的特定于数据库供应商的索引类型(参考)。

    要解决这个问题,您可以直接对数据库执行 create index ddl,或者将 ddl 写入到doctrine-migrations 文件中。后一个选项可以让您更轻松地部署或回滚更改。

    无论您使用哪种方法创建自定义索引,doctrine 都会将这些自定义索引始终标记为未映射索引,因此如果您执行 doctrine:schema:validate 您将收到一个错误,指出您的数据库是否不同步,同时执行doctrine:schema:update –dump-sql 或doctrine:migrations:diff 它将显示 drop index … 语句来删除自定义索引。

    解决方案

    我正在使用这些软件包版本。 (我相信该解决方案适用于相同主要版本的软件包):

    • 教义/dbal 4.0.4
    • 教义/教义包 2.12.0

    我找到了几个教程来处理这个问题,但并不令人满意:

    • https://www.liip.ch/en/blog/doctrine-and- generated-columns 这不再起作用,因为 doctrine dbal 删除了 dbal 4 上的事件管理器。(参考)
    • https://medium.com/yousign-engineering-product/ignore-custom-indexes-on-doctrine-dbal-b5131dd22071 这显示了一条弃用消息“platform_service”配置密钥自doctrine-bundle 2.9以来已弃用。 dbal 4 将不再支持通过连接参数设置自定义平台。 (参考)

    我在这里发现了一个关于 platform_service 配置替换的 github 问题 https://github.com/doctrine/doctrinebundle/issues/1656。

    阅读这两页让我了解了如何通过 doctrine 中间件使用自定义 dbal 平台的所有信息:

    • https://github.com/doctrine/dbal/pull/5699
    • https://symfony.com/bundles/doctrinebundle/current/middlewares.html

    最后,在深入研究源代码后,我找到了解决方案。您需要创建 4 个文件,其中 2 个文件是关于 doctrine 中间件的,另外 2 个文件是关于 doctrine dbal 平台和架构的。

    根据需要修改命名空间和类名。

    <?php declare(strict_types=1);
    
    namespace appdoctrinedbalmiddleware;
    
    use doctrinedbaldriver;
    use doctrinedbaldrivermiddleware;
    
    final class postgresqlplatformmiddleware implements middleware
    {
        #[override]
        public function wrap(driver $driver): driver
        {
            return new postgresqlplatformdriver($driver);
        }
    }
    
    <?php declare(strict_types=1);
    
    namespace appdoctrinedbalmiddleware;
    
    use appdoctrinedbalplatformspostgresqlplatform;
    use doctrinedbaldrivermiddlewareabstractdrivermiddleware;
    use doctrinedbalplatformsabstractplatform;
    use doctrinedbalserverversionprovider;
    
    final class postgresqlplatformdriver extends abstractdrivermiddleware
    {
        #[override]
        public function getdatabaseplatform(serverversionprovider $versionprovider): abstractplatform
        {
            return new postgresqlplatform();
        }
    }
    
    
    <?php declare(strict_types=1);
    
    namespace appdoctrinedbalplatforms;
    
    use appdoctrinedbalschemapostgresqlschemamanager;
    use doctrinedbalconnection;
    use doctrinedbalplatformspostgresqlplatform as basepostgresqlplatform;
    use doctrinedbalschemapostgresqlschemamanager as basepostgresqlschemamanager;
    use doctrinedbalschemaschemamanagerfactory;
    
    final class postgresqlplatform extends basepostgresqlplatform implements schemamanagerfactory
    {
        #[override]
        public function createschemamanager(connection $connection): basepostgresqlschemamanager
        {
            return new postgresqlschemamanager($connection, $this);
        }
    }
    
    <?php declare(strict_types=1);
    
    namespace AppDoctrineDBALSchema;
    
    use DoctrineDBALSchemaPostgreSQLSchemaManager as BasePostgreSQLSchemaManager;
    
    final class PostgreSQLSchemaManager extends BasePostgreSQLSchemaManager
    {
        private const array IGNORED_INDEXES = [
            'index_name_1' => true,
            'index_name_2' => true,
        ];
    
        #[Override]
        protected function _getPortableTableIndexesList(array $tableIndexes, string $tableName): array
        {
            $indexes = parent::_getPortableTableIndexesList($tableIndexes, $tableName);
    
            foreach (array_keys($indexes) as $indexName) {
                if (isset(self::IGNORED_INDEXES[$indexName])) {
                    unset($indexes[$indexName]);
                }
            }
    
            return $indexes;
        }
    }
    
    想要了解更多内容,请持续关注码农资源网,一起探索发现编程世界的无限可能!
    本站部分资源来源于网络,仅限用于学习和研究目的,请勿用于其他用途。
    如有侵权请发送邮件至1943759704@qq.com删除

    码农资源网 » 忽略 Doctrine DBAL 4 上的自定义索引
    • 7会员总数(位)
    • 25846资源总数(个)
    • 0本周发布(个)
    • 0 今日发布(个)
    • 294稳定运行(天)

    提供最优质的资源集合

    立即查看 了解详情