(2007/01/03 05:25 작성) 출처: http://devzone.zend.com Using MySQL Full-text Searching Intended AudienceThis tutorial is intended for developers using MySQL (http://www.MySQL.com/) and PHP (http://www.php.net) who want to create a searchable database of some sort of textual data. It will focus on the Full-text capabilities presented by MySQL, moving into the Boolean opportunities that are presented i..
원본이 2006/03/06 11:49 작성된 게시물임.. 그땐 참 재밌게 봤었는데.. 이젠 옛날 이야기가 되어버렸네.. ㅎㅎ(2007/01/02 22:40 작성) FullText 의 개념 mysql 메뉴얼을 읽어보면 알 수있듯이 FullText 검색 기능의 개념 자체는 작은 규모가 아닌 큰 규모의 문자열 집합을(Large collections) 대상으로 빠르게 해당 검색어를 검색하기 위해서 만들어진 것입니다. 그리고, 이것은 'Like' 문 기능과는 다르고,'Where 필드 = 검색문자열' 문과도 (어떻게 만드느냐에 따라서) 다를 수 있습니다. 큰 규모라고 하면, 웹 검색엔진을(the Internet with a search engine) 상상해보시면 될겁니다. 구글(Google)의 경우 30억개 이상의..