You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An index could be added so that author_db.php->getByExactName() query would run much quicker.
ALTER TABLE .author DROP INDEX surname ,
ADD INDEX exactname ( surname ( 10 ) , firstname ( 10 ) , von ( 5 ) , jr ( 5 ) )
This Issue is part of an attempt to optimize importing into a big Aigaion database (currently 10,000+ authors, 80,000+ publications). Our installed Aigaion seems to crash or time-out when importing datasets with more than 300 publications.
The text was updated successfully, but these errors were encountered:
An index could be added so that author_db.php->getByExactName() query would run much quicker.
ALTER TABLE .
author
DROP INDEXsurname
,ADD INDEX
exactname
(surname
( 10 ) ,firstname
( 10 ) ,von
( 5 ) ,jr
( 5 ) )This Issue is part of an attempt to optimize importing into a big Aigaion database (currently 10,000+ authors, 80,000+ publications). Our installed Aigaion seems to crash or time-out when importing datasets with more than 300 publications.
The text was updated successfully, but these errors were encountered: