Wikipedia:Reference desk/Archives/Computing/2019 November 8

From Wikipedia, the free encyclopedia
Computing desk
< November 7 << Oct | November | Dec >> Current desk >
Welcome to the Wikipedia Computing Reference Desk Archives
The page you are currently viewing is a transcluded archive page. While you can leave answers for any questions shown below, please ask new questions on one of the current reference desk pages.


November 8[edit]

Why use SELECT ... FOR UPDATE in MySQL?[edit]

While transaction has ensured the ACID properties, so what is the point of using SELECT ... FOR UPDATE within a transaction like START TRANSACTION ... COMMIT? Can we replace SELECT ... FOR UPDATE within the transaction by SELECT ... (without FOR UPDATE)? - Justin545 (talk) 07:23, 8 November 2019 (UTC)[reply]

Presumably you plan to do an UPDATE on the selected records, within the transaction block, in either case. Then, yes, it does seem rather redundant, as far as locking those rows. I suppose it might still be a good programming practice, though, in case the SELECT and UPDATE are ever taken out of the transaction block. SinisterLefty (talk) 07:32, 8 November 2019 (UTC)[reply]
Indeed, I don't see the point of using SELECT ... FOR UPDATE within transactions. Transactions would be implemented with lock-free mechanisms, but according to the document SELECT ... FOR UPDATE sets lock on rows, which seems to incur performance issues by reducing concurrency. - Justin545 (talk) 07:54, 8 November 2019 (UTC)[reply]
The transaction block may override the row-level locking. SinisterLefty (talk) 08:10, 8 November 2019 (UTC)[reply]

Is the Common Gateway Interface getting less common?[edit]

Was the CGI protocol more used/useful 10 years ago? — Preceding unsigned comment added by 31.4.157.64 (talk) 23:06, 8 November 2019 (UTC)[reply]

Don't know, but here's our article: Common Gateway Interface. SinisterLefty (talk) 01:42, 9 November 2019 (UTC)[reply]
I have already looked into it. There's little in it about how widespread it is. Might be a good addition though. 31.4.141.27 (talk) 02:29, 9 November 2019 (UTC)[reply]