Full text search #676
sergiorgiraldo
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I made a full-text search in addition to url/title/description.
ALTER TABLE links ADD COLUMN check_content TINYINT DEFAULT 0;
CREATE TABLE link_text ( link_id int(11) NOT NULL, content longtext CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL, FULLTEXT KEY index_content (content))
2.Create a script to download the contents (page-source.php) and schedule as cron job:
fulltextSearch.patch
Beta Was this translation helpful? Give feedback.
All reactions