DemoArts #035 - "Mona" by Ilmenit
DemoArts #035 - "Mona" by Ilmenit
DemoArts #035 - "Mona" by Ilmenit
DemoArts #034 - “Wishful Twisting” by Fnuque & Loonies & TBC
DemoArts #033 - “Phon” by PlayPsyCo
DemoArts #032 - "The Golden Path" by United Force & Digital Dynamite
Web update announcement
DemoArts #031 - "Entropy" by Epoch
DemoArts #030 - "Piledriver" by Ümlaüt Design
DemoArts #029 - "Regus ademordna" by Excess
DemoArts #028 - "Sonoluminescence" by Loopit
DemoARTS #027 - "Rocket science" by Bauknecht & TEK
DemoArts #026 - "Starstruck" by The Black Lotus
DemoArts #025 - "Synthematik" by Outracks
DemoArts #024 - "Stargazer" by Andromeda & Orb
DemoARTS #023 - "Cubescapes" by Dekadence
DemoArts #022 - "Uncovering Static" by Alcatraz & Fairlight
DemoArts #021 - "Chaos Theory" by Conspiracy
DemoArts #020 - "The Box" by Ümlaüt Design
Permanently Deleted
DemoArts #019 - "Comaland" by Censor Design and Oxyron
DemoArts #018 - "Lifeforce" by ASD
Sure. Triggers are normally a good idea as they make sure that data is consistent. Like when you delete a user, a trigger will run to also decrease the number of users by one. But since they run for every row, they can certainly impact performance. Foreign key checks are also implementet as triggers so if your missing an index and the db has to crawl through huge tables of data for every delete (I suspect this was the cause of slowdown during DELETE), that too will affect performance.
While I don't do it often, here is the superuser command I use in psql to disable the triggers before doing any other commands:
SET session_replication_role TO replica;This is something postgresq uses internally when applying replication data, as it assumes all the data is correct and valid and don't fire any of the triggers or rules that would normally apply when modifying data. As you can see from the name, this is a session setting. If you quit the db session, everything goes back to normal so no data is changed and you don't run the risk of forgetting to change it back when your done.
If you do want to go back to normal operation during the same session for some reason, this gets you back to the default:
SET session_replication_role TO origin;And thank you for the helpful post about the bot problem in the first place.