HiveBrain v1.2.0
Get Started
← Back to all entries
patternsqlMinor

Similar function NOWAIT in MySQL

Submitted by: @import:stackexchange-dba··
0
Viewed 0 times
mysqlsimilarfunctionnowait

Problem

Select for update nowait doesn't work in MySQL 5x (innodb). Is there any function like NOWAIT in MySQL?

Solution

MySQL provides the ability to set application-specific locking using the GET_LOCK() function. You can check if the mutex has been taken by using the IS_FREE_LOCK() function.

You can refer this thread for detail:
http://forums.mysql.com/read.php?22,45679,45679#msg-45679

Also,
Non-blocking queries are not supported by MySQL:

http://lists.mysql.com/mysql/219041

Context

StackExchange Database Administrators Q#22286, answer score: 2

Revisions (0)

No revisions yet.