GET https://content.suika.at/?actor=9

Query Metrics

5 Database Queries
5 Different statements
2.60 ms Query time
3 Invalid entities

Grouped Statements

Show all queries

Time Count Info
1.01 ms
(38.81%)
1
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 
         INNER JOIN video_actor as a ON v.id = a.video_id WHERE a.actor_id = ? ORDER BY v.title) AS count_query
Parameters:
[
  "9"
]
0.65 ms
(24.95%)
1
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 
         INNER JOIN video_actor as a ON v.id = a.video_id WHERE a.actor_id = ? ORDER BY v.title LIMIT 0, 9
Parameters:
[
  "9"
]
0.37 ms
(14.21%)
1
SELECT a0_.id AS id_0, a0_.name AS name_1 FROM actor a0_ WHERE a0_.id IN ('9') ORDER BY a0_.name ASC
Parameters:
[]
0.29 ms
(11.20%)
1
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:
[]
0.28 ms
(10.82%)
1
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:
[]

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.