4.13 ms (48.27%)
|
1 |
INSERT INTO rental_file_draft (id, uid, created_at, user_agent, ip, min_area, min_rooms, furnished, max_rent, residents, cities, state, extrafields, city_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
Parameters: [
10
"6ab364484d6d"
"2026-09-23 05:31:52"
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
"216.73.217.104"
20
1
2
null
null
null
"city"
null
null
]
INSERT INTO rental_file_draft (id, uid, created_at, user_agent, ip, min_area, min_rooms, furnished, max_rent, residents, cities, state, extrafields, city_id) VALUES (10, '6ab364484d6d', '2026-09-23 05:31:52', 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)', '216.73.217.104', 20, 1, 2, NULL, NULL, NULL, 'city', NULL, NULL);
|
1.97 ms (22.99%)
|
1 |
SELECT r0_.id AS id_0, r0_.uid AS uid_1, r0_.created_at AS created_at_2, r0_.user_agent AS user_agent_3, r0_.ip AS ip_4, r0_.min_area AS min_area_5, r0_.min_rooms AS min_rooms_6, r0_.furnished AS furnished_7, r0_.max_rent AS max_rent_8, r0_.residents AS residents_9, r0_.cities AS cities_10, r0_.state AS state_11, r0_.extrafields AS extrafields_12, r0_.city_id AS city_id_13 FROM rental_file_draft r0_ WHERE r0_.ip = ? AND r0_.user_agent = ? AND r0_.created_at > ? LIMIT 1
Parameters: [
"216.73.217.104"
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
"2026-09-23 05:26:52"
]
SELECT r0_.id AS id_0, r0_.uid AS uid_1, r0_.created_at AS created_at_2, r0_.user_agent AS user_agent_3, r0_.ip AS ip_4, r0_.min_area AS min_area_5, r0_.min_rooms AS min_rooms_6, r0_.furnished AS furnished_7, r0_.max_rent AS max_rent_8, r0_.residents AS residents_9, r0_.cities AS cities_10, r0_.state AS state_11, r0_.extrafields AS extrafields_12, r0_.city_id AS city_id_13 FROM rental_file_draft r0_ WHERE r0_.ip = '216.73.217.104' AND r0_.user_agent = 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)' AND r0_.created_at > '2026-09-23 05:26:52' LIMIT 1;
|