Joomla 3.9Rc1
Add a million unique rows to the action logs table.
Use the filters
Optimised queries using indexes
a million rows are consulted before a result can be returned in mysql
Mysql
Installed table structure:
CREATE TABLE `#__action_logs` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`message_language_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`message` text COLLATE utf8mb4_unicode_ci NOT NULL,
`log_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`extension` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_id` int(11) NOT NULL DEFAULT 0,
`item_id` int(11) NOT NULL DEFAULT 0,
`ip_address` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.0.0.0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4001001 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;```
Labels |
Added:
?
|
Title |
|
Status | New | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2018-10-15 14:47:48 |
Closed_By | ⇒ | brianteeman |
Maybe at a minimum these three could be added: