How to run a query to find a string in blob files?

后端 未结 2 817
故里飘歌
故里飘歌 2020-12-18 01:30

Mediawiki has a table in the database \'text\' which contains the page content. It is saved as a [BLOB] file. I would like to run a query to search through all the text on

2条回答
  •  难免孤独
    2020-12-18 01:46

    As per the mediawiki documentation text table stores only the text for the revision. Hence to access the complete text, all revisions corresponding to a page need to be processed. It is better to use an API call to mediawiki search engine and process the results than search using SQL query.

提交回复
热议问题