GET https://content.suika.at/

Query Metrics

4 Database Queries
4 Different statements
2.11 ms Query time
3 Invalid entities

Queries

Group similar statements

# Time Info
1 1.11 ms
SELECT COUNT(*) AS num FROM (
            SELECT 
                   v.id, v.status, v.title, v.description, v.year, v.length, 
                   i.id as image_id, i.filename as image_filename
            FROM video AS v
            LEFT OUTER JOIN video_image AS i
                ON v.front_image_id = i.id 
         ORDER BY v.title) AS count_query
Parameters:
[]
2 0.45 ms
SELECT 
                   v.id, v.status, v.title, v.description, v.year, v.length, 
                   i.id as image_id, i.filename as image_filename
            FROM video AS v
            LEFT OUTER JOIN video_image AS i
                ON v.front_image_id = i.id 
         ORDER BY v.title LIMIT 0, 9
Parameters:
[]
3 0.29 ms
SELECT t0_.id AS id_0, t0_.name AS name_1, t0_.multiple_select AS multiple_select_2 FROM tag_category t0_ ORDER BY t0_.name ASC
Parameters:
[]
4 0.26 ms
SELECT 
                   t.id, t.name, 
                   c.id as cat_id, c.name as cat_name
            FROM tag AS t
            JOIN tag_category AS c
                ON t.category_id = c.id
Parameters:
[]

Database Connections

Name Service
default doctrine.dbal.default_connection

Entity Managers

Name Service
default doctrine.orm.default_entity_manager

Second Level Cache

Second Level Cache is not enabled.

Entities Mapping

Class Mapping errors
App\Entity\Actor
  • The mappings App\Entity\Actor#images and App\Entity\ActorImage#actor are inconsistent with each other.
App\Entity\Video
  • The mappings App\Entity\Video#images and App\Entity\VideoImage#video are inconsistent with each other.
App\Entity\VideoImage
  • The association App\Entity\VideoImage#video refers to the inverse side field App\Entity\Video#filename which is not defined as association.
  • The association App\Entity\VideoImage#video refers to the inverse side field App\Entity\Video#filename which does not exist.
App\Entity\Studio No errors.
App\Entity\Tag No errors.
App\Entity\TagCategory No errors.