Re: authentication questions

From: "Mendola Gaetano" <mendola(at)bigfoot(dot)com>
To: "Michael Hanna" <zen(at)hwcn(dot)org>
Cc: "pgsql-novice" <pgsql-novice(at)postgresql(dot)org>
Subject: Re: authentication questions
Date: 2003-06-27 13:34:22
Message-ID: 005a01c33cb1$30d96f60$32add6c2@mm.eutelsat.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

"Michael Hanna" <zen(at)hwcn(dot)org> wrote:
> OK, but what if you have thousands of users in your pg_shadow table?
> Can postgreSQL handle such a load?

What change if instead you have thousand of user in your own table?
May be will be longer the identification process but not so longer then
have instead on user on that table.
BTW the table pg_shadow have an index on the column usename
and I believe that in the identification process you are asking if
the bottle-neck can be some think like:

select * from pg_shadow where usename = 'xxxxxxx';

I have a table that is similar to pg_shadow and the table handle
9823 rows, performing the query above take long 0.12 msec

I hope this help.

Regards
Gaetano Mendola

In response to

Browse pgsql-novice by date

  From Date Subject
Next Message greg 2003-06-27 13:34:54 Re: Probably a stupid question
Previous Message Dani Oderbolz 2003-06-27 13:29:43 Re: Probably a stupid question