Suggestion / request for reducing wp_IPBLC_login_failed size
-
My database size grows quite quickly because of the records in
wp_IPBLC_login_failed
being quite large for these hacking attempts that use system.multicall. It is growing at about 20MB per week.These records use the full 65535 characters of the
variables
field.I have recently started trimming these records so that they are only 1024 bytes long like this:
UPDATE wp_IPBLC_login_failed SET variables = CONCAT( left(variables,1017), " etc…" ) WHERE length(variables) > 1024
Is there any benefit to
wp_IPBLC_login_failed.variables
being 65,535 bytes long? Would a shorter field be good enough?
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Suggestion / request for reducing wp_IPBLC_login_failed size’ is closed to new replies.