在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → coreseek-4.1-beta.tar.gz

coreseek-4.1-beta.tar.gz

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:9.58M
  • 下载次数:1
  • 浏览次数:135
  • 发布时间:2020-06-05
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.gz
  • 所需积分:2
 

实例介绍

【实例简介】
之前上传的coressek-3.2.14在我的centos上编译通不过。百度了下,说是不兼容GCC4.7。 又找了个coreseek-4.1,但是又遇到不能生成configure文件。再百度找到解决方案。修改完,重新打了个包。供下载。
【实例截图】
【核心代码】
coreseek-4.1-beta.tar
└── coreseek-4.1-beta
├── README.txt
├── csft-4.1
│   ├── COPYING
│   ├── INSTALL
│   ├── Makefile
│   ├── Makefile.am
│   ├── Makefile.in
│   ├── acinclude.m4
│   ├── aclocal.m4
│   ├── api
│   │   ├── java
│   │   │   ├── MANIFEST.MF
│   │   │   ├── Makefile
│   │   │   ├── README
│   │   │   ├── SphinxClient.java
│   │   │   ├── SphinxException.java
│   │   │   ├── SphinxMatch.java
│   │   │   ├── SphinxResult.java
│   │   │   ├── SphinxWordInfo.java
│   │   │   ├── mk.cmd
│   │   │   ├── mkdoc.cmd
│   │   │   └── test.java
│   │   ├── libsphinxclient
│   │   │   ├── COPYING
│   │   │   ├── Makefile.am
│   │   │   ├── README
│   │   │   ├── build.mk
│   │   │   ├── buildconf.sh
│   │   │   ├── config.guess
│   │   │   ├── config.sub
│   │   │   ├── configure
│   │   │   ├── configure.in
│   │   │   ├── install-sh
│   │   │   ├── libsphinxclient.vcproj
│   │   │   ├── ltmain.sh
│   │   │   ├── missing
│   │   │   ├── smoke_ref.txt
│   │   │   ├── smoke_test.conf
│   │   │   ├── smoke_test.sh
│   │   │   ├── sphinxclient.c
│   │   │   ├── sphinxclient.h
│   │   │   ├── sphinxclient_config.h.in
│   │   │   ├── test.c
│   │   │   ├── test.sln
│   │   │   ├── test.vcproj
│   │   │   ├── test03.sln
│   │   │   └── test03.vcproj
│   │   ├── ruby
│   │   │   ├── README.rdoc
│   │   │   ├── Rakefile
│   │   │   ├── init.rb
│   │   │   ├── install.rb
│   │   │   ├── lib
│   │   │   │   ├── sphinx
│   │   │   │   │   ├── client.rb
│   │   │   │   │   ├── request.rb
│   │   │   │   │   └── response.rb
│   │   │   │   └── sphinx.rb
│   │   │   ├── spec
│   │   │   │   ├── client_response_spec.rb
│   │   │   │   ├── client_spec.rb
│   │   │   │   ├── fixtures
│   │   │   │   │   ├── default_search.php
│   │   │   │   │   ├── default_search_index.php
│   │   │   │   │   ├── excerpt_custom.php
│   │   │   │   │   ├── excerpt_default.php
│   │   │   │   │   ├── excerpt_flags.php
│   │   │   │   │   ├── field_weights.php
│   │   │   │   │   ├── filter.php
│   │   │   │   │   ├── filter_exclude.php
│   │   │   │   │   ├── filter_float_range.php
│   │   │   │   │   ├── filter_float_range_exclude.php
│   │   │   │   │   ├── filter_range.php
│   │   │   │   │   ├── filter_range_exclude.php
│   │   │   │   │   ├── filter_range_int64.php
│   │   │   │   │   ├── filter_ranges.php
│   │   │   │   │   ├── filters.php
│   │   │   │   │   ├── filters_different.php
│   │   │   │   │   ├── geo_anchor.php
│   │   │   │   │   ├── group_by_attr.php
│   │   │   │   │   ├── group_by_attrpair.php
│   │   │   │   │   ├── group_by_day.php
│   │   │   │   │   ├── group_by_day_sort.php
│   │   │   │   │   ├── group_by_month.php
│   │   │   │   │   ├── group_by_week.php
│   │   │   │   │   ├── group_by_year.php
│   │   │   │   │   ├── group_distinct.php
│   │   │   │   │   ├── id_range.php
│   │   │   │   │   ├── id_range64.php
│   │   │   │   │   ├── index_weights.php
│   │   │   │   │   ├── keywords.php
│   │   │   │   │   ├── limits.php
│   │   │   │   │   ├── limits_cutoff.php
│   │   │   │   │   ├── limits_max.php
│   │   │   │   │   ├── limits_max_cutoff.php
│   │   │   │   │   ├── match_all.php
│   │   │   │   │   ├── match_any.php
│   │   │   │   │   ├── match_boolean.php
│   │   │   │   │   ├── match_extended.php
│   │   │   │   │   ├── match_extended2.php
│   │   │   │   │   ├── match_fullscan.php
│   │   │   │   │   ├── match_phrase.php
│   │   │   │   │   ├── max_query_time.php
│   │   │   │   │   ├── miltiple_queries.php
│   │   │   │   │   ├── ranking_bm25.php
│   │   │   │   │   ├── ranking_none.php
│   │   │   │   │   ├── ranking_proximity.php
│   │   │   │   │   ├── ranking_proximity_bm25.php
│   │   │   │   │   ├── ranking_wordcount.php
│   │   │   │   │   ├── retries.php
│   │   │   │   │   ├── retries_delay.php
│   │   │   │   │   ├── select.php
│   │   │   │   │   ├── set_override.php
│   │   │   │   │   ├── sort_attr_asc.php
│   │   │   │   │   ├── sort_attr_desc.php
│   │   │   │   │   ├── sort_expr.php
│   │   │   │   │   ├── sort_extended.php
│   │   │   │   │   ├── sort_relevance.php
│   │   │   │   │   ├── sort_time_segments.php
│   │   │   │   │   ├── sphinxapi.php
│   │   │   │   │   ├── update_attributes.php
│   │   │   │   │   ├── update_attributes_mva.php
│   │   │   │   │   └── weights.php
│   │   │   │   └── sphinx
│   │   │   │   ├── sphinx-id64.conf
│   │   │   │   ├── sphinx.conf
│   │   │   │   └── sphinx_test.sql
│   │   │   ├── sphinx.yml.tpl
│   │   │   ├── tasks
│   │   │   │   └── sphinx.rake
│   │   │   └── test.rb
│   │   ├── sphinxapi.php
│   │   ├── sphinxapi.py
│   │   ├── test.php
│   │   ├── test.py
│   │   ├── test2.php
│   │   └── test2.py
│   ├── autom4te.cache
│   │   ├── output.0
│   │   ├── output.1
│   │   ├── output.2
│   │   ├── output.3
│   │   ├── requests
│   │   ├── traces.0
│   │   ├── traces.1
│   │   ├── traces.2
│   │   └── traces.3
│   ├── buildconf.sh
│   ├── codeblocks
│   │   ├── README.txt
│   │   ├── indexer.cbp
│   │   ├── indextool.cbp
│   │   ├── libsphinx.cbp
│   │   ├── search.cbp
│   │   ├── searchd.cbp
│   │   ├── spelldump.cbp
│   │   ├── testrt.cbp
│   │   └── tests.cbp
│   ├── config
│   │   ├── config.h
│   │   ├── config.h.in
│   │   ├── config.h.in~
│   │   ├── depcomp
│   │   ├── install-sh
│   │   ├── missing
│   │   └── stamp-h1
│   ├── config.log
│   ├── config.status
│   ├── configure
│   ├── configure.ac
│   ├── contrib
│   │   ├── README
│   │   └── scripts
│   │   ├── cachecleanup.sh
│   │   └── searchd
│   ├── cs_test
│   │   ├── t_cjk_mmseg
│   │   │   ├── README
│   │   │   ├── csft.conf
│   │   │   ├── data.xml
│   │   │   └── dict
│   │   │   ├── exceptions.txt
│   │   │   ├── uni.lib
│   │   │   └── wordform.txt
│   │   └── t_pysource
│   │   ├── csft.conf
│   │   └── src
│   │   └── dummy
│   │   └── __init__.py
│   ├── doc
│   │   ├── Makefile
│   │   ├── Makefile.am
│   │   ├── Makefile.in
│   │   ├── html2txt.pl
│   │   ├── indexer.1
│   │   ├── indextool.1
│   │   ├── internals-coding-standard.txt
│   │   ├── internals-index-format.txt
│   │   ├── manpages.xml
│   │   ├── mk.cmd
│   │   ├── search.1
│   │   ├── searchd.1
│   │   ├── spelldump.1
│   │   ├── sphinx.css
│   │   ├── sphinx.html
│   │   ├── sphinx.txt
│   │   ├── sphinx.xml
│   │   └── sphinx.xsl
│   ├── example.sql
│   ├── libexpat
│   │   ├── libexpat.sln
│   │   └── libexpat.vcproj
│   ├── libstemmer_c
│   │   ├── Makefile
│   │   ├── Makefile.am
│   │   ├── Makefile.in
│   │   ├── README
│   │   ├── libstemmer_c.sln
│   │   ├── libstemmer_c.vcproj
│   │   └── mkinc.mak
│   ├── misc
│   │   ├── build.cmd
│   │   ├── resolve.py
│   │   └── suggest
│   │   ├── README
│   │   ├── suggest.conf
│   │   └── suggest.php
│   ├── mysqlse
│   │   ├── CMakeLists.txt
│   │   ├── INSTALL
│   │   ├── Makefile.am
│   │   ├── gen_data.php
│   │   ├── ha_sphinx.cc
│   │   ├── ha_sphinx.h
│   │   ├── make-patch.sh
│   │   ├── plug.in
│   │   ├── snippets_udf.cc
│   │   ├── sphinx.5.0.22.diff
│   │   ├── sphinx.5.0.27.diff
│   │   ├── sphinx.5.0.37.diff
│   │   └── sphinx.5.0.91.diff
│   ├── python.m4
│   ├── smoke.sh
│   ├── sphinx-min.conf.dist
│   ├── sphinx-min.conf.in
│   ├── sphinx.conf.dist
│   ├── sphinx.conf.in
│   ├── sphinx.spec
│   ├── sphinx.workspace
│   ├── sphinx05.sln
│   ├── sphinx08.sln
│   ├── src
│   │   ├── Makefile
│   │   ├── Makefile.am
│   │   ├── Makefile.in
│   │   ├── indexer.cpp
│   │   ├── indextool.cpp
│   │   ├── llsphinxql.c
│   │   ├── md5.cpp
│   │   ├── md5.h
│   │   ├── py_helper.cpp
│   │   ├── py_helper.h
│   │   ├── py_layer.cpp
│   │   ├── py_layer.h
│   │   ├── py_source.cpp
│   │   ├── py_source.h
│   │   ├── search.cpp
│   │   ├── searchd.cpp
│   │   ├── spelldump.cpp
│   │   ├── sph_darts.h
│   │   ├── sphinx.cpp
│   │   ├── sphinx.h
│   │   ├── sphinxcustomsort.inl
│   │   ├── sphinxexcerpt.cpp
│   │   ├── sphinxexcerpt.h
│   │   ├── sphinxexpr.cpp
│   │   ├── sphinxexpr.h
│   │   ├── sphinxexpr.y
│   │   ├── sphinxfilter.cpp
│   │   ├── sphinxfilter.h
│   │   ├── sphinxint.h
│   │   ├── sphinxmetaphone.cpp
│   │   ├── sphinxql.l
│   │   ├── sphinxql.y
│   │   ├── sphinxquery.cpp
│   │   ├── sphinxquery.h
│   │   ├── sphinxquery.y
│   │   ├── sphinxrt.cpp
│   │   ├── sphinxrt.h
│   │   ├── sphinxsearch.cpp
│   │   ├── sphinxsearch.h
│   │   ├── sphinxselect.y
│   │   ├── sphinxsort.cpp
│   │   ├── sphinxsoundex.cpp
│   │   ├── sphinxstd.cpp
│   │   ├── sphinxstd.h
│   │   ├── sphinxstem.h
│   │   ├── sphinxstemcz.cpp
│   │   ├── sphinxstemen.cpp
│   │   ├── sphinxstemru.cpp
│   │   ├── sphinxstemru.inl
│   │   ├── sphinxtimers.h
│   │   ├── sphinxudf.h
│   │   ├── sphinxutils.cpp
│   │   ├── sphinxutils.h
│   │   ├── sphinxversion.h
│   │   ├── srcxrev.pl
│   │   ├── svnxrev.cmd
│   │   ├── svnxrev.pl
│   │   ├── svnxrev.sh
│   │   ├── svnxrev.wsf
│   │   ├── testrt.cpp
│   │   ├── tests.cpp
│   │   ├── tokenizer_zhcn.cpp
│   │   ├── tokenizer_zhcn.h
│   │   ├── udfexample.c
│   │   ├── yy.cmd
│   │   ├── yysphinxexpr.c
│   │   ├── yysphinxexpr.h
│   │   ├── yysphinxql.c
│   │   ├── yysphinxql.h
│   │   ├── yysphinxql.patch
│   │   ├── yysphinxquery.c
│   │   ├── yysphinxquery.h
│   │   ├── yysphinxselect.c
│   │   └── yysphinxselect.h
│   ├── test
│   │   ├── Makefile
│   │   ├── bench
│   │   │   ├── fullscan.php
│   │   │   ├── fullscan.xml
│   │   │   ├── ljq1k.txt
│   │   │   ├── match-modes.xml
│   │   │   ├── quorum-or.xml
│   │   │   └── reset.xml
│   │   ├── bench-results
│   │   │   └── stub.txt
│   │   ├── bench.php
│   │   ├── clean.cmd
│   │   ├── clean.sh
│   │   ├── data
│   │   │   └── stub.txt
│   │   ├── helpers.inc
│   │   ├── html_120.txt
│   │   ├── settings.inc
│   │   ├── stopwords.txt
│   │   ├── stopwords_121.txt
│   │   ├── synonyms.txt
│   │   ├── test-templates.xml
│   │   ├── test_001
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_002
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_003
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_004
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_005
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_006
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_007
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_008
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_009
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_010
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_011
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_012
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_013
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_014
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_015
│   │   │   ├── model.bin
│   │   │   ├── stops.txt
│   │   │   └── test.xml
│   │   ├── test_016
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_017
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_018
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_019
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_020
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_021
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_022
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_023
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_024
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_025
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_026
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_027
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_028
│   │   │   ├── model.aff
│   │   │   ├── model.dict
│   │   │   ├── model.spell
│   │   │   └── test.inc
│   │   ├── test_029
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_030
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_031
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_032
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_033
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_034
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_035
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_036
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_037
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_038
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_039
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_040
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_041
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_042
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_043
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_044
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_045
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_046
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_047
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_048
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_049
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_050
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_051
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_052
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_053
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_054
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_055
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_056
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_057
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_058
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_059
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_060
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_061
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_062
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_063
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_064
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_065
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_066
│   │   │   ├── dbgen.php
│   │   │   ├── model.bin
│   │   │   ├── refdata
│   │   │   │   ├── v14.spa
│   │   │   │   ├── v14.spd
│   │   │   │   ├── v14.sph
│   │   │   │   ├── v14.spi
│   │   │   │   ├── v14.spk
│   │   │   │   ├── v14.spm
│   │   │   │   ├── v14.spp
│   │   │   │   ├── v19.spa
│   │   │   │   ├── v19.spd
│   │   │   │   ├── v19.sph
│   │   │   │   ├── v19.spi
│   │   │   │   ├── v19.spk
│   │   │   │   ├── v19.spm
│   │   │   │   ├── v19.spp
│   │   │   │   ├── v19.sps
│   │   │   │   ├── v19noattrs.spa
│   │   │   │   ├── v19noattrs.spd
│   │   │   │   ├── v19noattrs.sph
│   │   │   │   ├── v19noattrs.spi
│   │   │   │   ├── v19noattrs.spk
│   │   │   │   ├── v19noattrs.spm
│   │   │   │   ├── v19noattrs.spp
│   │   │   │   ├── v19noattrs.sps
│   │   │   │   ├── v20.spa
│   │   │   │   ├── v20.spd
│   │   │   │   ├── v20.sph
│   │   │   │   ├── v20.spi
│   │   │   │   ├── v20.spk
│   │   │   │   ├── v20.spm
│   │   │   │   ├── v20.spp
│   │   │   │   ├── v20.sps
│   │   │   │   ├── v8.spa
│   │   │   │   ├── v8.spd
│   │   │   │   ├── v8.sph
│   │   │   │   ├── v8.spi
│   │   │   │   ├── v8.spm
│   │   │   │   └── v8.spp
│   │   │   └── test.xml
│   │   ├── test_067
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_068
│   │   │   ├── data1.xml
│   │   │   ├── data2.xml
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_069
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_070
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_071
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_072
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_073
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_074
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_075
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_076
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_077
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_078
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_079
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_080
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_081
│   │   │   ├── model.bin
│   │   │   ├── test.xml
│   │   │   └── words.txt
│   │   ├── test_082
│   │   │   ├── model.bin
│   │   │   ├── test.xml
│   │   │   ├── words_delta.txt
│   │   │   └── words_main.txt
│   │   ├── test_083
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_084
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_085
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_086
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_087
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_088
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_089
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_090
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_091
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_092
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_093
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_094
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_095
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_096
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_097
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_098
│   │   │   ├── model.bin
│   │   │   ├── test.xml
│   │   │   ├── wf3.txt
│   │   │   └── wordforms.txt
│   │   ├── test_099
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_100
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_101
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_102
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_103
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_104
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_105
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_106
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_107
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_108
│   │   │   ├── data.xml
│   │   │   ├── data2.xml
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_109
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_110
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_111
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_112
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_113
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_114
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_115
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_116
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_117
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_118
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_119
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_120
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_121
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_122
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_123
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_124
│   │   │   ├── field_124_match.txt
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_125
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_126
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_127
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_128
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_129
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_130
│   │   │   ├── load_file.txt
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_131
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_132
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_133
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_134
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_135
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_136
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_137
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_138
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_139
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_140
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_141
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_142
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_143
│   │   │   ├── model.bin
│   │   │   ├── test.xml
│   │   │   └── wordforms.txt
│   │   ├── test_144
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_145
│   │   │   ├── model.bin
│   │   │   ├── stopwords.txt
│   │   │   └── test.xml
│   │   ├── test_146
│   │   │   ├── model.bin
│   │   │   ├── stopwords.txt
│   │   │   └── test.xml
│   │   ├── test_147
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_148
│   │   │   ├── doc1.txt
│   │   │   ├── doc2.txt
│   │   │   ├── doc3.txt
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_149
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_150
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_151
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_152
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_153
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_154
│   │   │   ├── model.bin
│   │   │   ├── stopwords.txt
│   │   │   └── test.xml
│   │   ├── test_155
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_156
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_157
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_158
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_159
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_160
│   │   │   ├── model.bin
│   │   │   ├── multiwordorms.txt
│   │   │   └── test.xml
│   │   ├── test_161
│   │   │   ├── data1.xml
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_162
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_163
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_164
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_165
│   │   │   ├── model.bin
│   │   │   ├── synonyms.txt
│   │   │   ├── synonyms2.txt
│   │   │   └── test.xml
│   │   ├── test_166
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_167
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_168
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_169
│   │   │   ├── model.bin
│   │   │   ├── refdata
│   │   │   │   ├── small1.spa
│   │   │   │   ├── small1.spd
│   │   │   │   ├── small1.sph
│   │   │   │   ├── small1.spi
│   │   │   │   ├── small1.spk
│   │   │   │   ├── small1.spm
│   │   │   │   ├── small1.spp
│   │   │   │   ├── small1.sps
│   │   │   │   ├── small2.spa
│   │   │   │   ├── small2.spd
│   │   │   │   ├── small2.sph
│   │   │   │   ├── small2.spi
│   │   │   │   ├── small2.spk
│   │   │   │   ├── small2.spm
│   │   │   │   ├── small2.spp
│   │   │   │   └── small2.sps
│   │   │   └── test.xml
│   │   ├── test_170
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_171
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_172
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_173
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_174
│   │   │   ├── model.bin
│   │   │   ├── readme.txt
│   │   │   └── test.xml
│   │   ├── test_175
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_176
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_177
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_178
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_179
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_180
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_181
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_182
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_183
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── test_184
│   │   │   ├── model.bin
│   │   │   └── test.xml
│   │   ├── ubertest.php
│   │   └── wordforms.txt
│   └── win
│   ├── indexer05.vcproj
│   ├── indexer08.vcproj
│   ├── indextool05.vcproj
│   ├── indextool08.vcproj
│   ├── libsphinx05.vcproj
│   ├── libsphinx08.vcproj
│   ├── search05.vcproj
│   ├── search08.vcproj
│   ├── searchd05.vcproj
│   ├── searchd08.vcproj
│   ├── spelldump05.vcproj
│   ├── spelldump08.vcproj
│   ├── testrt05.vcproj
│   ├── testrt08.vcproj
│   ├── tests05.vcproj
│   └── tests08.vcproj
├── mmseg-3.2.14
│   ├── AUTHORS
│   ├── COPYING
│   ├── ChangeLog
│   ├── INSTALL
│   ├── Makefile.am
│   ├── Makefile.in
│   ├── NEWS
│   ├── README
│   ├── THANKS
│   ├── aclocal.m4
│   ├── bootstrap
│   ├── config
│   │   ├── apu-conf.m4
│   │   ├── apu-hints.m4
│   │   ├── config.guess
│   │   ├── config.sub
│   │   ├── depcomp
│   │   ├── find_apr.m4
│   │   ├── install-sh
│   │   ├── ltmain.sh
│   │   ├── mdate-sh
│   │   ├── missing
│   │   ├── mkinstalldirs
│   │   ├── readline.m4
│   │   ├── sys_errlist.m4
│   │   └── sys_siglist.m4
│   ├── config-h.in
│   ├── configure
│   ├── configure.in
│   ├── data
│   │   ├── Lexicon_full_words.txt
│   │   ├── build_unigram.py
│   │   ├── char.stat.txt
│   │   ├── mmseg.ini
│   │   ├── thesaurus.txt
│   │   ├── uni.lib
│   │   └── unigram.txt
│   ├── python
│   │   ├── mmseg_interface.cpp
│   │   ├── mmseg_interface.h
│   │   ├── pymmseg.c
│   │   ├── pymmseg.sln
│   │   ├── pymmseg.vcproj
│   │   └── tmmseg.py
│   ├── ruby
│   │   ├── Makefile
│   │   ├── extconf.lin.rb
│   │   ├── extconf.win.rb
│   │   ├── mmseg-i386-mswin32.def
│   │   ├── mmseg-i386-mswin32.exp
│   │   ├── readme.txt
│   │   ├── rubyapi.cpp
│   │   └── test.rb
│   ├── script
│   │   ├── build_thesaurus.py
│   │   ├── build_tolower_table.py
│   │   ├── char_table_build.py
│   │   └── tolower.txt
│   ├── src
│   │   ├── Makefile.am
│   │   ├── config.win.h
│   │   ├── csr_typedefs.h
│   │   ├── css
│   │   │   ├── ICorpusReader.h
│   │   │   ├── SegmentPkg.cpp
│   │   │   ├── SegmentPkg.h
│   │   │   ├── Segmenter.h
│   │   │   ├── SegmenterManager.cpp
│   │   │   ├── SegmenterManager.h
│   │   │   ├── SynonymsDict.cpp
│   │   │   ├── SynonymsDict.h
│   │   │   ├── ThesaurusDict.cpp
│   │   │   ├── ThesaurusDict.h
│   │   │   ├── UnigramCorpusReader.cpp
│   │   │   ├── UnigramCorpusReader.h
│   │   │   ├── UnigramDict.cpp
│   │   │   ├── UnigramDict.h
│   │   │   ├── UnigramRecord.cpp
│   │   │   ├── UnigramRecord.h
│   │   │   ├── mmthunk.cpp
│   │   │   ├── mmthunk.h
│   │   │   ├── segmenter.cpp
│   │   │   └── tolowercase.h
│   │   ├── iniparser
│   │   │   ├── dictionary.c
│   │   │   ├── dictionary.h
│   │   │   ├── iniparser.c
│   │   │   └── iniparser.h
│   │   ├── mk_dist.bat
│   │   ├── mmseg_main.cpp
│   │   ├── t1.txt
│   │   ├── utils
│   │   │   ├── Singleton.h
│   │   │   ├── StringTokenizer.cpp
│   │   │   ├── StringTokenizer.h
│   │   │   ├── Utf8_16.cpp
│   │   │   ├── Utf8_16.h
│   │   │   ├── assert.c
│   │   │   ├── bsd_getopt.c
│   │   │   ├── bsd_getopt.h
│   │   │   ├── bsd_getopt_win.c
│   │   │   ├── bsd_getopt_win.h
│   │   │   ├── csr.h
│   │   │   ├── csr_assert.h
│   │   │   ├── csr_mmap.c
│   │   │   ├── csr_mmap.h
│   │   │   ├── csr_pool.h
│   │   │   ├── csr_utils.c
│   │   │   ├── csr_utils.h
│   │   │   ├── darts.h
│   │   │   ├── freelist.h
│   │   │   ├── os.h
│   │   │   └── scoped_ptr.h
│   │   └── win32
│   │   ├── changelog.txt
│   │   ├── css03.sln
│   │   ├── css05.sln
│   │   ├── libcss03.vcproj
│   │   ├── libcss05.vcproj
│   │   ├── mmseg03.vcproj
│   │   ├── mmseg05.vcproj
│   │   ├── readme.txt
│   │   ├── syb.txt
│   │   ├── t.txt
│   │   ├── t1.txt
│   │   └── t2.txt
│   └── stamp-h.in
└── testpack
├── api
│   ├── java
│   │   ├── MANIFEST.MF
│   │   ├── Makefile
│   │   ├── README
│   │   ├── SphinxClient.java
│   │   ├── SphinxException.java
│   │   ├── SphinxMatch.java
│   │   ├── SphinxResult.java
│   │   ├── SphinxWordInfo.java
│   │   ├── mk.cmd
│   │   ├── mkdoc.cmd
│   │   └── test.java
│   ├── libsphinxclient
│   │   ├── COPYING
│   │   ├── Makefile.am
│   │   ├── Makefile.in
│   │   ├── README
│   │   ├── build.mk
│   │   ├── buildconf.sh
│   │   ├── config.guess
│   │   ├── config.sub
│   │   ├── configure
│   │   ├── configure.in
│   │   ├── install-sh
│   │   ├── libsphinxclient.vcproj
│   │   ├── ltmain.sh
│   │   ├── missing
│   │   ├── smoke_ref.txt
│   │   ├── smoke_test.conf
│   │   ├── smoke_test.sh
│   │   ├── sphinxclient.c
│   │   ├── sphinxclient.h
│   │   ├── sphinxclient_config.h.in
│   │   ├── test.c
│   │   ├── test.sln
│   │   ├── test.vcproj
│   │   ├── test03.sln
│   │   └── test03.vcproj
│   ├── ruby
│   │   ├── README.rdoc
│   │   ├── Rakefile
│   │   ├── init.rb
│   │   ├── install.rb
│   │   ├── lib
│   │   │   ├── sphinx
│   │   │   │   ├── client.rb
│   │   │   │   ├── request.rb
│   │   │   │   └── response.rb
│   │   │   └── sphinx.rb
│   │   ├── spec
│   │   │   ├── client_response_spec.rb
│   │   │   ├── client_spec.rb
│   │   │   ├── fixtures
│   │   │   │   ├── default_search.php
│   │   │   │   ├── default_search_index.php
│   │   │   │   ├── excerpt_custom.php
│   │   │   │   ├── excerpt_default.php
│   │   │   │   ├── excerpt_flags.php
│   │   │   │   ├── field_weights.php
│   │   │   │   ├── filter.php
│   │   │   │   ├── filter_exclude.php
│   │   │   │   ├── filter_float_range.php
│   │   │   │   ├── filter_float_range_exclude.php
│   │   │   │   ├── filter_range.php
│   │   │   │   ├── filter_range_exclude.php
│   │   │   │   ├── filter_range_int64.php
│   │   │   │   ├── filter_ranges.php
│   │   │   │   ├── filters.php
│   │   │   │   ├── filters_different.php
│   │   │   │   ├── geo_anchor.php
│   │   │   │   ├── group_by_attr.php
│   │   │   │   ├── group_by_attrpair.php
│   │   │   │   ├── group_by_day.php
│   │   │   │   ├── group_by_day_sort.php
│   │   │   │   ├── group_by_month.php
│   │   │   │   ├── group_by_week.php
│   │   │   │   ├── group_by_year.php
│   │   │   │   ├── group_distinct.php
│   │   │   │   ├── id_range.php
│   │   │   │   ├── id_range64.php
│   │   │   │   ├── index_weights.php
│   │   │   │   ├── keywords.php
│   │   │   │   ├── limits.php
│   │   │   │   ├── limits_cutoff.php
│   │   │   │   ├── limits_max.php
│   │   │   │   ├── limits_max_cutoff.php
│   │   │   │   ├── match_all.php
│   │   │   │   ├── match_any.php
│   │   │   │   ├── match_boolean.php
│   │   │   │   ├── match_extended.php
│   │   │   │   ├── match_extended2.php
│   │   │   │   ├── match_fullscan.php
│   │   │   │   ├── match_phrase.php
│   │   │   │   ├── max_query_time.php
│   │   │   │   ├── miltiple_queries.php
│   │   │   │   ├── ranking_bm25.php
│   │   │   │   ├── ranking_none.php
│   │   │   │   ├── ranking_proximity.php
│   │   │   │   ├── ranking_proximity_bm25.php
│   │   │   │   ├── ranking_wordcount.php
│   │   │   │   ├── retries.php
│   │   │   │   ├── retries_delay.php
│   │   │   │   ├── select.php
│   │   │   │   ├── set_override.php
│   │   │   │   ├── sort_attr_asc.php
│   │   │   │   ├── sort_attr_desc.php
│   │   │   │   ├── sort_expr.php
│   │   │   │   ├── sort_extended.php
│   │   │   │   ├── sort_relevance.php
│   │   │   │   ├── sort_time_segments.php
│   │   │   │   ├── sphinxapi.php
│   │   │   │   ├── update_attributes.php
│   │   │   │   ├── update_attributes_mva.php
│   │   │   │   └── weights.php
│   │   │   └── sphinx
│   │   │   ├── sphinx-id64.conf
│   │   │   ├── sphinx.conf
│   │   │   └── sphinx_test.sql
│   │   ├── sphinx.yml.tpl
│   │   ├── tasks
│   │   │   └── sphinx.rake
│   │   └── test.rb
│   ├── sphinxapi.php
│   ├── sphinxapi.py
│   ├── test.php
│   ├── test.py
│   ├── test2.php
│   ├── test2.py
│   ├── test_coreseek.php
│   └── test_coreseek_rtindex.php
├── etc
│   ├── csft.conf
│   ├── csft_cjk.conf
│   ├── csft_demo_python.conf
│   ├── csft_demo_python_pymssql.conf
│   ├── csft_mysql.conf
│   ├── csft_rtindex.conf
│   ├── csft_rtindex_cjk.conf
│   └── pysource
│   ├── csft_demo
│   │   └── __init__.py
│   └── csft_demo_pymssql
│   └── __init__.py
└── var
└── test
├── documents.sql
└── test.xml

249 directories, 1031 files

标签:

实例下载地址

coreseek-4.1-beta.tar.gz

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警