There is a users table with an id index. It is necessary to implement the ability for users to add each other to bookmarks. Is it possible to use the following table if its expected size is up to 100 million? lines? Is there a more productive way to solve this problem?
CREATE TABLE `friends` ( `user1` int(11) unsigned NOT NULL, `user2` int(11) unsigned NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8;