Warning: mysqli::__construct(): (HY000/1203): User howardkn already has more than 'max_user_connections' active connections in D:\Inetpub\vhosts\howardknight.net\al.howardknight.net\includes\artfuncs.php on line 21
Failed to connect to MySQL: (1203) User howardkn already has more than 'max_user_connections' active connections
Warning: mysqli::query(): Couldn't fetch mysqli in D:\Inetpub\vhosts\howardknight.net\al.howardknight.net\index.php on line 66
Article <v3tr3p$1t2fv$3@dont-email.me>
Deutsch   English   Français   Italiano  
<v3tr3p$1t2fv$3@dont-email.me>

View for Bookmarking (what is this?)
Look up another Usenet article

Path: ...!npeer.as286.net!npeer-ng0.as286.net!weretis.net!feeder8.news.weretis.net!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: Lawrence D'Oliveiro <ldo@nz.invalid>
Newsgroups: comp.arch
Subject: Re: architectural goals, Byte Addressability And Beyond
Date: Fri, 7 Jun 2024 02:26:01 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 15
Message-ID: <v3tr3p$1t2fv$3@dont-email.me>
References: <v0s17o$2okf4$2@dont-email.me> <soE7O.5245$Ktt5.2694@fx40.iad>
	<v3o7ot$kfrm$5@dont-email.me> <cme26jttmuh5i0l31fo5ch18g221oku84q@4ax.com>
	<v3s83a$2dgh$1@gal.iecc.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Fri, 07 Jun 2024 04:26:02 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="21a6995757d724b8d83dd14f044d030a";
	logging-data="2001407"; mail-complaints-to="abuse@eternal-september.org";	posting-account="U2FsdGVkX18a4hqtGLDPANjj/9RrnvQv"
User-Agent: Pan/0.158 (Avdiivka; )
Cancel-Lock: sha1:w8IYQcR8apv94SpFYZZntmhekGg=
Bytes: 1890

On Thu, 6 Jun 2024 11:55:22 -0000 (UTC), John Levine wrote:

> If you're doing something that is mostly read-only and easy to
> parallelize, then it makes sense to use a farm of cheap PCs. But if you
> are a bank or an airline, you need to be able to lock your database so
> that you debit a bank account or sell a plane seat exactly once.  There
> is a rule of thumb that the cost of locking something grows roughly as
> the square of the number of things contending for the lock.

Remember that the number of users actually buying a product at any given 
time is only a small proportion (say 1%) of the number of users currently 
accessing the site.

So, by that same square law, the locking problem is only 1/10,000 as bad 
as one might think.