-
比較初級,希望能有提高篇。國內(nèi)sphinx的數(shù)據(jù)太少了。 重點需要中文分詞,分布式索引,增量索引,還有一些技巧,如地理位置相關(guān)處理,如crc32轉(zhuǎn)換的場景查看全部
-
挺好的,好好學(xué)習(xí)繼續(xù)努力,早日向大神們看齊查看全部
-
剛果共和國tum查看全部
-
這個還不錯查看全部
-
sphinx快查看全部
-
sphinx快查看全部
-
select count(*) from news查看全部
-
為什么要用sphinx查看全部
-
怎么用查看全部
-
怎么用查看全部
-
1) 加索引 mysql> alter table 表名 add index 索引名 (字段名1[,字段名2 …]); 例子: mysql> alter table employee add index emp_name (name); 2) 加主關(guān)鍵字的索引 mysql> alter table 表名 add primary key (字段名); 例子: mysql> alter table employee add primary key(id); 3) 加唯一限制條件的索引 mysql> alter table 表名 add unique 索引名 (字段名); 例子: mysql> alter table employee add unique emp_name2(cardnumber); 4) 刪除某個索引 mysql> alter table 表名 drop index 索引名; 例子: mysql>alter table employee drop index emp_name; 5) 增加字段 mysql> ALTER TABLE table_name ADD field_name field_type;查看全部
-
alter table news add index title(title)查看全部
-
alter table news add index title查看全部
-
show create table news;查看全部
-
sphinx簡述。。。查看全部
舉報
0/150
提交
取消