Database event

Database event Event is a procedural database object called by MySql at the corresponding time. An event can be called once or started periodically. It is managed by a specific thread, which is the so-called "event scheduler". Events are similar to triggers, which start when something happens. When a statement is started on the ...

Added by alex2046 on Fri, 25 Feb 2022 15:03:47 +0200

python learning notes 4

Semaphore Semaphores are multiple locks that allow multiple threads to change data at the same time, while mutually exclusive locks allow only one thread to change data at the same time. Relationship between Python semaphores and mutexes A special use of semaphores is mutex. Mutex is a semaphore with an initial value of 1, which can realize th ...

Added by RichterBelmont on Sun, 09 Jan 2022 18:04:56 +0200