Looking up Routes from a Database: Symfony CMF DynamicRouter

The core Symfony Routing System is excellent at handling complex sets of routes. A highly optimized routing cache is dumped during deployments.

コアの Symfony ルーティング システムは、複雑なルート セットの処理に優れています。展開中に、高度に最適化されたルーティング キャッシュがダンプされます。

However, when working with large amounts of data that each need a nice readable URL (e.g. for search engine optimization purposes), the routing can get slowed down. Additionally, if routes need to be edited by users, the route cache would need to be rebuilt frequently.

ただし、それぞれが読みやすい URL を必要とする大量のデータを処理する場合 (検索エンジンの最適化など)、ルーティングが遅くなる可能性があります。さらに、ルートをユーザーが編集する必要がある場合は、ルート キャッシュを頻繁に再構築する必要があります。

For these cases, the DynamicRouter offers an alternative approach:

このような場合、DynamicRouter は別のアプローチを提供します。
  • Routes are stored in a database;
    ルートはデータベースに保存されます。
  • There is a database index on the path field, the lookup scales to huge numbers of different routes;
    パス フィールドにはデータベース インデックスがあり、ルックアップは膨大な数の異なるルートに対応します。
  • Writes only affect the index of the database, which is very efficient.
    書き込みはデータベースのインデックスにのみ影響を与えるため、非常に効率的です。

When all routes are known during deploy time and the number is not too high, using a custom route loader is the preferred way to add more routes. When working with only one type of objects, a slug parameter on the object and the #[ParamConverter] attribute works fine (see FrameworkExtraBundle) .

展開時にすべてのルートが既知であり、数が多すぎない場合は、カスタム ルート ローダーを使用してルートを追加することをお勧めします。 1 つのタイプのオブジェクトのみを操作する場合、オブジェクトの slug パラメータと #[ParamConverter] 属性は正常に機能します (FrameworkExtraBundle を参照)。

The DynamicRouter is useful when you need Route objects with the full feature set of Symfony. Each route can define a specific controller so you can decouple the URL structure from your application logic.

DynamicRouter は、Symfony の完全な機能セットを備えた Route オブジェクトが必要な場合に役立ちます。各ルートは特定のコントローラーを定義できるため、アプリケーション ロジックから URL 構造を切り離すことができます。

The DynamicRouter comes with built-in support for Doctrine ORM and Doctrine PHPCR-ODM but offers the ContentRepositoryInterface to write a custom loader, e.g. for another database type or a REST API or anything else.

DynamicRouter には Doctrine ORM と DoctrinePHPCR-ODM のサポートが組み込まれていますが、ContentRepositoryInterface を提供してカスタムローダーを記述します。別のデータベース タイプまたは REST API などの場合。

The DynamicRouter is explained in the Symfony CMF documentation.

DynamicRouter は Symfony CMF ドキュメントで説明されています。