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

Query Metrics

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

Queries

Group similar statements

# Time Info
1 1.16 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 
         INNER JOIN video_actor as a ON v.id = a.video_id WHERE a.actor_id = ? ORDER BY v.title) AS count_query
Parameters:
[
  "6"
]
2 0.86 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 
         INNER JOIN video_actor as a ON v.id = a.video_id WHERE a.actor_id = ? ORDER BY v.title LIMIT 0, 9
Parameters:
[
  "6"
]
3 0.43 ms
SELECT a0_.id AS id_0, a0_.name AS name_1 FROM actor a0_ WHERE a0_.id IN ('6') ORDER BY a0_.name ASC
Parameters:
[]
4 0.30 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:
[]
5 0.32 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.