Just as an FYI to fellow developpers out there (feeling generous today):
How many times have you written a semaphore locking system for your
programs and worried they weren't thread-safe, or wished you didn't have
to? Well, if you're feeling especially lazy (as I often do) and you
have MySQL on hand, try using its locking features instead of writing
your own (especially if your program already involves MySQL). Connect
to MySQL [this assumes you're using InnoDB/BDB], do a BEGIN and try to
UPDATE a row in a locks table for your mutex (UPDATE Locks SET Holder =
"me" WHERE Name = "ThreadMutex4") and do your work. MySQL will block
the UPDATE until the previous thread (if any) rolls back or commits its
transaction.
Any thoughts / technical comments? (I just started doing this in a large
internal log tracking project that does, in fact, use MySQL) :-)
--
Michael T. Babcock
C.T.O., FibreSpeed Ltd.
http://www.fibrespeed.net/~mbabcock
---------------------------------------------------------------------
Before posting, please check:
http://www.mysql.com/manual.php (the manual)
http://lists.mysql.com/ (the list archive)
To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php
- RE: Info: Using MySQL as Mutex Michael T. Babcock
- RE: Info: Using MySQL as Mutex Dana Diederich
- Re: Info: Using MySQL as Mutex Jeremy Zawodny