tags:

views:

49

answers:

1

I'm using mysql-php-memcached and I want to realize something like that: http://www.facebook.com/directory/people/ to browse users by name.

Suppose I have hundred of thousands username, how can I handle it?

The problem is: I don't know what is the efficient way to realize it. Do I have to use Sphinx search engine?

Any idea?

A: 

Perhaps you could load a list of the first N users, and include a button to call an external script to serve up the next batch of users.

This is, of course, only if you are actually BROWSING, not searching.

Andrew