├── .clt ├── checkers │ ├── contains │ ├── ignore │ └── something └── patterns ├── .editorconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── feature_request.yml │ └── support_request.yml ├── PULL_REQUEST_TEMPLATE.md ├── stale.yml └── workflows │ ├── build_template.yml │ ├── check_docs.yml │ ├── checklist_validator.yml │ ├── clt_nightly.yml │ ├── clt_tests.yml │ ├── coverage.yml │ ├── deploy_docs.yml │ ├── mirror.yml │ ├── nightly_dumps.yml │ ├── nightly_fuzzer.yml │ ├── nightly_integration.yml │ ├── nightly_memleaks.yml │ ├── pack_publish.yml │ ├── pack_publish_galera.yml │ ├── test.yml │ ├── test_template.yml │ └── win_test_template.yml ├── .gitignore ├── .gitlab-ci.yml ├── .gitmodules ├── .noindex ├── .translation-cache ├── Changelog.md.json ├── Connecting_to_the_server.md.json ├── Connecting_to_the_server │ ├── HTTP.md.json │ └── MySQL_protocol.md.json ├── Creating_a_cluster │ ├── Adding_a_new_node.md.json │ ├── Creating_a_cluster.md.json │ ├── Remote_nodes.md.json │ ├── Remote_nodes │ │ ├── Load_balancing.md.json │ │ └── Mirroring.md.json │ └── Setting_up_replication │ │ ├── Adding_and_removing_a_table_from_a_replication_cluster.md.json │ │ ├── Cluster_recovery.md.json │ │ ├── Creating_a_replication_cluster.md.json │ │ ├── Deleting_a_replication_cluster.md.json │ │ ├── Joining_a_replication_cluster.md.json │ │ ├── Managing_replication_nodes.md.json │ │ ├── Replication_cluster_status.md.json │ │ ├── Restarting_a_cluster.md.json │ │ └── Setting_up_replication.md.json ├── Creating_a_table.md.json ├── Creating_a_table │ ├── Creating_a_distributed_table │ │ ├── Creating_a_distributed_table.md.json │ │ ├── Creating_a_local_distributed_table.md.json │ │ └── Remote_tables.md.json │ ├── Data_types.md.json │ ├── Local_tables.md.json │ ├── Local_tables │ │ ├── Percolate_table.md.json │ │ ├── Plain_and_real-time_table_settings.md.json │ │ ├── Plain_table.md.json │ │ ├── Real-time_table.md.json │ │ └── Template_table.md.json │ └── NLP_and_tokenization │ │ ├── Advanced_HTML_tokenization.md.json │ │ ├── Data_tokenization.md.json │ │ ├── Exceptions.md.json │ │ ├── Ignoring_stop-words.md.json │ │ ├── Languages_with_continuous_scripts.md.json │ │ ├── Low-level_tokenization.md.json │ │ ├── Morphology.md.json │ │ ├── Supported_languages.md.json │ │ ├── Wildcard_searching_settings.md.json │ │ └── Wordforms.md.json ├── Data_creation_and_modification │ ├── Adding_data_from_external_storages.md.json │ ├── Adding_data_from_external_storages │ │ ├── Adding_data_to_tables │ │ │ ├── Attaching_one_table_to_another.md.json │ │ │ ├── Importing_table.md.json │ │ │ ├── Killlist_in_plain_tables.md.json │ │ │ └── Merging_tables.md.json │ │ ├── Fetching_from_CSV,TSV.md.json │ │ ├── Fetching_from_XML_streams.md.json │ │ ├── Fetching_from_databases │ │ │ ├── Database_connection.md.json │ │ │ ├── Execution_of_fetch_queries.md.json │ │ │ ├── Introduction.md.json │ │ │ ├── Processing_fetched_data.md.json │ │ │ └── Ranged_queries.md.json │ │ ├── Main_delta.md.json │ │ ├── Plain_tables_creation.md.json │ │ └── Rotating_a_table.md.json │ ├── Adding_documents_to_a_table │ │ ├── Adding_documents_to_a_real-time_table.md.json │ │ └── Adding_rules_to_a_percolate_table.md.json │ ├── Data_creation_and_modification.md.json │ ├── Deleting_documents.md.json │ ├── Transactions.md.json │ └── Updating_documents │ │ ├── REPLACE.md.json │ │ ├── REPLACE_vs_UPDATE.md.json │ │ └── UPDATE.md.json ├── Deleting_a_table.md.json ├── Emptying_a_table.md.json ├── Extensions │ ├── FEDERATED.md.json │ ├── SphinxSE.md.json │ └── UDFs_and_Plugins │ │ ├── Listing_plugins.md.json │ │ ├── Plugins │ │ ├── Creating_a_plugin.md.json │ │ ├── Deleting_a_plugin.md.json │ │ ├── Enabling_and_disabling_buddy_plugins.md.json │ │ ├── Ranker_plugins.md.json │ │ ├── Reloading_plugins.md.json │ │ └── Token_filter_plugins.md.json │ │ ├── UDF.md.json │ │ ├── UDF │ │ ├── Creating_a_function.md.json │ │ └── Deleting_a_function.md.json │ │ └── UDFs_and_Plugins.md.json ├── Functions.md.json ├── Functions │ ├── Arrays_and_conditions_functions.md.json │ ├── Date_and_time_functions.md.json │ ├── Geo_spatial_functions.md.json │ ├── Mathematical_functions.md.json │ ├── Other_functions.md.json │ ├── Searching_and_ranking_functions.md.json │ ├── String_functions.md.json │ └── Type_casting_functions.md.json ├── Installation │ ├── Compiling_from_sources.md.json │ ├── Debian_and_Ubuntu.md.json │ ├── Docker.md.json │ ├── Installation.md.json │ ├── MacOS.md.json │ ├── Manticore_Buddy.md.json │ ├── Migration_from_Sphinx.md.json │ ├── RHEL_and_Centos.md.json │ └── Windows.md.json ├── Integration │ ├── Apache_Superset.md.json │ ├── DBeaver.md.json │ ├── Filebeat.md.json │ ├── Grafana.md.json │ ├── Kafka.md.json │ ├── Kibana.md.json │ └── Logstash.md.json ├── Introduction.md.json ├── Listing_tables.md.json ├── Logging │ ├── Binary_logging.md.json │ ├── Docker_logging.md.json │ ├── Query_logging.md.json │ ├── Rotating_query_and_server_logs.md.json │ └── Server_logging.md.json ├── Miscellaneous_tools.md.json ├── Node_info_and_management │ ├── KILL.md.json │ ├── Node_status.md.json │ ├── Profiling │ │ ├── Query_plan.md.json │ │ └── Query_profile.md.json │ ├── SHOW_META.md.json │ ├── SHOW_QUERIES.md.json │ ├── SHOW_THREADS.md.json │ ├── SHOW_VARIABLES.md.json │ ├── SHOW_VERSION.md.json │ ├── SHOW_WARNINGS.md.json │ └── Table_settings_and_status │ │ ├── SHOW_TABLE_INDEXES.md.json │ │ ├── SHOW_TABLE_SETTINGS.md.json │ │ └── SHOW_TABLE_STATUS.md.json ├── Openapi.md.json ├── Quick_start_guide.md.json ├── README.md.json ├── Read_this_first.md.json ├── References.md.json ├── Reporting_bugs.md.json ├── Searching │ ├── Autocomplete.md.json │ ├── Collations.md.json │ ├── Cost_based_optimizer.md.json │ ├── Distributed_searching.md.json │ ├── Expressions.md.json │ ├── Faceted_search.md.json │ ├── Filters.md.json │ ├── Full_text_matching │ │ ├── Basic_usage.md.json │ │ ├── Boolean_optimization.md.json │ │ ├── Escaping.md.json │ │ ├── Operators.md.json │ │ └── Profiling.md.json │ ├── Geo_search.md.json │ ├── Grouping.md.json │ ├── Highlighting.md.json │ ├── Intro.md.json │ ├── Joining.md.json │ ├── KNN.md.json │ ├── Multi-queries.md.json │ ├── Options.md.json │ ├── Pagination.md.json │ ├── Percolate_query.md.json │ ├── Query_cache.md.json │ ├── Search_results.md.json │ ├── Sorting_and_ranking.md.json │ ├── Spell_correction.md.json │ └── Sub-selects.md.json ├── Securing_and_compacting_a_table │ ├── Backup_and_restore.md.json │ ├── Compacting_a_table.md.json │ ├── Flushing_RAM_chunk_to_a_new_disk_chunk.md.json │ ├── Flushing_RAM_chunk_to_disk.md.json │ ├── Flushing_attributes.md.json │ ├── Flushing_hostnames.md.json │ ├── Freezing_a_table.md.json │ ├── Freezing_and_locking_a_table.md.json │ ├── Isolation_during_flushing_and_merging.md.json │ └── RT_table_structure.md.json ├── Security │ ├── Read_only.md.json │ └── SSL.md.json ├── Server_settings │ ├── Comments.md.json │ ├── Common.md.json │ ├── Inheritance_of_index_and_source_declarations.md.json │ ├── Scripted_configuration.md.json │ ├── Searchd.md.json │ ├── Setting_variables_online.md.json │ └── Special_suffixes.md.json ├── Starting_the_server.md.json ├── Starting_the_server │ ├── Docker.md.json │ ├── Linux.md.json │ ├── MacOS.md.json │ ├── Manually.md.json │ └── Windows.md.json ├── Telemetry.md.json └── Updating_table_schema_and_settings.md.json ├── 116.conf ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── INSTALL ├── LICENSE ├── README.md ├── TESTING.md ├── actions ├── checklist-validator │ └── action.yml └── update-deps │ └── action.yml ├── api ├── lgpl-3.0.txt ├── libsphinxclient │ ├── CMakeLists.txt │ ├── COPYING │ ├── README │ ├── smoke.cmake │ ├── smoke_data.csv │ ├── smoke_ref.txt │ ├── smoke_test.conf │ ├── smoke_test.sh │ ├── sphinxclient.c │ ├── sphinxclient.h │ └── test.c ├── ruby │ ├── README.rdoc │ ├── Rakefile │ ├── init.rb │ ├── install.rb │ ├── lib │ │ ├── sphinx.rb │ │ └── sphinx │ │ │ ├── client.rb │ │ │ ├── request.rb │ │ │ └── response.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 ├── cmake ├── CommonInfo.cmake ├── FindMysql.cmake ├── FindZSTD.cmake ├── Findre2.cmake ├── Findstemmer.cmake ├── GetCCTZ.cmake ├── GetColumnar.cmake ├── GetGALERA.cmake ├── GetGooglebench.cmake ├── GetGoogletest.cmake ├── GetICU.cmake ├── GetJIEBA.cmake ├── GetNLJSON.cmake ├── GetRBitmap.cmake ├── GetRE2.cmake ├── GetSSL.cmake ├── GetSTEMMER.cmake ├── GetUniAlgo.cmake ├── GetVCPKG.cmake ├── GetxxHash.cmake ├── SetBuildType.cmake ├── banner.cmake ├── builds │ ├── CommonDeb.cmake │ ├── CommonRpm.cmake │ ├── VersionDeps.cmake │ ├── build_bionic.cmake │ ├── build_bookworm.cmake │ ├── build_bullseye.cmake │ ├── build_buster.cmake │ ├── build_debian.cmake │ ├── build_default.cmake │ ├── build_focal.cmake │ ├── build_jammy.cmake │ ├── build_macosbrew.cmake │ ├── build_rhel.cmake │ ├── build_rhel10.cmake │ ├── build_rhel7.cmake │ ├── build_rhel8.cmake │ ├── build_rhel9.cmake │ ├── build_stretch.cmake │ ├── build_windows.cmake │ └── build_xenial.cmake ├── check_atomic_intrinsics.cmake ├── check_const_iconv.cmake ├── check_rwlock_prefer_writer.cmake ├── check_unaligned_ram_access.cmake ├── check_vitable_pthread_setname_np.cmake ├── columnar-imported.cmake.in ├── external-build.cmake.in ├── fixup_test_name.cmake ├── galera-copy-package.sh.in ├── galera-imported.cmake.in ├── galera-package.cmake.in ├── gbench-imported.cmake.in ├── genheader.cmake ├── gtest-imported.cmake.in ├── helpers.cmake ├── init_cache_settings.cmake ├── mincore_test.cmake ├── mybison.cmake ├── printers.cmake ├── setup_distribution_build.cmake ├── split.cmake └── update_bundle.cmake ├── columnar_src.txt ├── compare_manuals.sh ├── component-licenses ├── FindMysql.cmake-license-gplv2floss ├── README.md ├── cjson-license ├── http_parser-license ├── libmysqlclient-license ├── lz4-license ├── sphinx-license └── xxhash-license ├── config ├── config_cmake.h.in └── config_indexer_cmake.h.in ├── configure ├── contrib ├── README └── scripts │ ├── cachecleanup.sh │ └── searchd ├── deps.txt ├── dist ├── 70-manticore.conf ├── CPackOptions.cmake.in ├── build_dockers │ ├── README.md │ ├── cross │ │ ├── external_toolchain │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile_cmake3243 │ │ │ └── entry_point.sh │ │ ├── freebsd.cmake │ │ ├── linux.cmake │ │ ├── osx.cmake │ │ ├── sysroots │ │ │ ├── README.md │ │ │ ├── boost_include.tar.xz.md │ │ │ ├── boost_library.sh │ │ │ ├── boost_macos__.tar.xz.md │ │ │ ├── boost_windows_x64.tar.xz.md │ │ │ ├── build_alma10.sh │ │ │ ├── build_alma9.sh │ │ │ ├── build_bionic.sh │ │ │ ├── build_bookworm.sh │ │ │ ├── build_bullseye.sh │ │ │ ├── build_buster.sh │ │ │ ├── build_centos7.sh │ │ │ ├── build_centos8.sh │ │ │ ├── build_focal.sh │ │ │ ├── build_jammy.sh │ │ │ ├── debian.sh │ │ │ ├── finalize.sh │ │ │ ├── in_debian.sh │ │ │ ├── in_rhel10.sh │ │ │ ├── in_rhel7.sh │ │ │ ├── in_rhel8.sh │ │ │ ├── in_rhel9.sh │ │ │ ├── mkboost.sh │ │ │ ├── mksysroot.sh │ │ │ ├── mksysrootrhel.sh │ │ │ ├── packages_bionic.txt │ │ │ ├── packages_bookworm.txt │ │ │ ├── packages_bullseye.txt │ │ │ ├── packages_buster.txt │ │ │ ├── packages_focal.txt │ │ │ ├── packages_jammy.txt │ │ │ ├── packages_rhel10.txt │ │ │ ├── packages_rhel7.txt │ │ │ ├── packages_rhel8.txt │ │ │ ├── packages_rhel9.txt │ │ │ ├── redhat.sh │ │ │ ├── sysroot_freebsd13_x86_64.tar.xz.md │ │ │ ├── sysroot_macos__.tar.xz.md │ │ │ └── sysroot_windows_x64.tar.xz.md │ │ ├── triplets │ │ │ ├── README.md │ │ │ ├── arm64-linux.cmake │ │ │ ├── arm64-osx.cmake │ │ │ ├── x64-freebsd.cmake │ │ │ ├── x64-linux.cmake │ │ │ └── x64-osx.cmake │ │ ├── windows-cl.cmake │ │ └── windows.cmake │ ├── nsis │ │ ├── Dockerfile │ │ ├── deploy.sh │ │ ├── nsis_src_parser.sh │ │ ├── nsisscript.nsi │ │ └── nsisunz.dll │ └── retired │ │ ├── README.md │ │ ├── aarch64 │ │ ├── bionic │ │ │ ├── base_build │ │ │ │ └── Dockerfile │ │ │ ├── boost_175 │ │ │ │ └── Dockerfile │ │ │ ├── build.sh │ │ │ ├── build_base.sh │ │ │ ├── build_boost.sh │ │ │ ├── build_cmake.sh │ │ │ ├── cmake_320 │ │ │ │ └── Dockerfile │ │ │ └── distr.txt │ │ ├── buildall.sh │ │ ├── bullseye │ │ │ ├── base_build │ │ │ │ └── Dockerfile │ │ │ ├── boost_175 │ │ │ │ └── Dockerfile │ │ │ ├── build.sh │ │ │ ├── build_base.sh │ │ │ ├── build_boost.sh │ │ │ ├── build_cmake.sh │ │ │ ├── cmake_320 │ │ │ │ └── Dockerfile │ │ │ └── distr.txt │ │ ├── buster │ │ │ ├── base_build │ │ │ │ └── Dockerfile │ │ │ ├── boost_175 │ │ │ │ └── Dockerfile │ │ │ ├── build.sh │ │ │ ├── build_base.sh │ │ │ ├── build_boost.sh │ │ │ ├── build_cmake.sh │ │ │ ├── cmake_320 │ │ │ │ └── Dockerfile │ │ │ └── distr.txt │ │ ├── centos7 │ │ │ ├── base_build │ │ │ │ └── Dockerfile │ │ │ ├── boost_175 │ │ │ │ └── Dockerfile │ │ │ ├── build.sh │ │ │ ├── build_base.sh │ │ │ ├── build_boost.sh │ │ │ ├── build_cmake.sh │ │ │ ├── cmake_320 │ │ │ │ └── Dockerfile │ │ │ └── distr.txt │ │ ├── centos8 │ │ │ ├── base_build │ │ │ │ └── Dockerfile │ │ │ ├── boost_175 │ │ │ │ └── Dockerfile │ │ │ ├── build.sh │ │ │ ├── build_base.sh │ │ │ ├── build_boost.sh │ │ │ ├── build_cmake.sh │ │ │ ├── cmake_320 │ │ │ │ └── Dockerfile │ │ │ └── distr.txt │ │ ├── focal │ │ │ ├── base_build │ │ │ │ └── Dockerfile │ │ │ ├── boost_175 │ │ │ │ └── Dockerfile │ │ │ ├── build.sh │ │ │ ├── build_base.sh │ │ │ ├── build_boost.sh │ │ │ ├── build_cmake.sh │ │ │ ├── cmake_320 │ │ │ │ └── Dockerfile │ │ │ └── distr.txt │ │ ├── stretch │ │ │ ├── base_build │ │ │ │ └── Dockerfile │ │ │ ├── boost_175 │ │ │ │ └── Dockerfile │ │ │ ├── build.sh │ │ │ ├── build_base.sh │ │ │ ├── build_boost.sh │ │ │ ├── build_cmake.sh │ │ │ ├── cmake_320 │ │ │ │ └── Dockerfile │ │ │ └── distr.txt │ │ └── xenial │ │ │ ├── base_build │ │ │ └── Dockerfile │ │ │ ├── boost_175 │ │ │ └── Dockerfile │ │ │ ├── build.sh │ │ │ ├── build_base.sh │ │ │ ├── build_boost.sh │ │ │ ├── build_cmake.sh │ │ │ ├── cmake_320 │ │ │ └── Dockerfile │ │ │ └── distr.txt │ │ ├── bionic │ │ ├── base_build │ │ │ └── Dockerfile │ │ ├── base_build_arm │ │ │ └── Dockerfile │ │ ├── boost_175 │ │ │ └── Dockerfile │ │ ├── boost_175_arm │ │ │ └── Dockerfile │ │ ├── build.sh │ │ ├── build_base.sh │ │ ├── build_boost.sh │ │ ├── build_clang.sh │ │ ├── build_cmake.sh │ │ ├── clang_13 │ │ │ └── Dockerfile │ │ ├── cmake_320 │ │ │ └── Dockerfile │ │ ├── cmake_320_arm │ │ │ └── Dockerfile │ │ └── distr.txt │ │ ├── buildall.sh │ │ ├── bullseye │ │ ├── base_build │ │ │ └── Dockerfile │ │ ├── boost_175 │ │ │ └── Dockerfile │ │ ├── build.sh │ │ ├── build_base.sh │ │ ├── build_boost.sh │ │ ├── build_clang.sh │ │ ├── build_cmake.sh │ │ ├── clang_13 │ │ │ └── Dockerfile │ │ ├── cmake_320 │ │ │ └── Dockerfile │ │ └── distr.txt │ │ ├── buster │ │ ├── base_build │ │ │ └── Dockerfile │ │ ├── boost_175 │ │ │ └── Dockerfile │ │ ├── build.sh │ │ ├── build_base.sh │ │ ├── build_boost.sh │ │ ├── build_clang.sh │ │ ├── build_cmake.sh │ │ ├── clang_13 │ │ │ └── Dockerfile │ │ ├── cmake_320 │ │ │ └── Dockerfile │ │ └── distr.txt │ │ ├── centos7 │ │ ├── base_build │ │ │ └── Dockerfile │ │ ├── boost_175 │ │ │ └── Dockerfile │ │ ├── build.sh │ │ ├── build_base.sh │ │ ├── build_boost.sh │ │ ├── build_clang.sh │ │ ├── build_cmake.sh │ │ ├── clang_7 │ │ │ └── Dockerfile │ │ ├── cmake_320 │ │ │ └── Dockerfile │ │ └── distr.txt │ │ ├── centos8 │ │ ├── base_build │ │ │ └── Dockerfile │ │ ├── boost_175 │ │ │ └── Dockerfile │ │ ├── build.sh │ │ ├── build_base.sh │ │ ├── build_boost.sh │ │ ├── build_clang.sh │ │ ├── build_cmake.sh │ │ ├── clang_11 │ │ │ └── Dockerfile │ │ ├── cmake_320 │ │ │ └── Dockerfile │ │ └── distr.txt │ │ ├── cross │ │ ├── base_clang12 │ │ │ └── Dockerfile │ │ ├── base_clang13 │ │ │ └── Dockerfile │ │ ├── bigsur_arm64 │ │ │ ├── Dockerfile │ │ │ └── homebrew_arm64.tar.xz.md │ │ ├── bigsur_sdk │ │ │ ├── Dockerfile │ │ │ ├── MacOSX11.3.sdk.tar.xz.md │ │ │ └── toolchain.cmake │ │ ├── bigsur_x64 │ │ │ ├── Dockerfile │ │ │ └── homebrew_x64.tar.xz.md │ │ ├── build │ │ ├── build_cross │ │ │ ├── Dockerfile │ │ │ ├── boost_include.tar.xz.md │ │ │ ├── entry_point.sh │ │ │ └── toolchain.cmake │ │ ├── centos_rhel │ │ │ └── Dockerfile │ │ ├── cmake232 │ │ │ └── Dockerfile │ │ ├── cmake323 │ │ │ └── Dockerfile │ │ ├── cmake_clang │ │ │ └── Dockerfile │ │ ├── freebsd_13 │ │ │ ├── Dockerfile │ │ │ ├── sysroot_fbsd_13.md │ │ │ └── toolchain.cmake │ │ ├── sysroots │ │ │ ├── build_stretch.sh │ │ │ ├── build_xenial.sh │ │ │ └── stretch.apt │ │ ├── toolchain_clang │ │ │ └── Dockerfile │ │ ├── ubuntu_debian │ │ │ ├── Dockerfile │ │ │ └── entry_point.sh │ │ ├── ubuntu_debian_amd64 │ │ │ ├── Dockerfile │ │ │ └── some_name_x86_64.tar.xz.md │ │ └── ubuntu_debian_arm64 │ │ │ ├── Dockerfile │ │ │ └── some_name_aarc64.tar.xz.md │ │ ├── focal │ │ ├── base_build │ │ │ └── Dockerfile │ │ ├── boost_175 │ │ │ └── Dockerfile │ │ ├── build.sh │ │ ├── build_base.sh │ │ ├── build_boost.sh │ │ ├── build_clang.sh │ │ ├── build_cmake.sh │ │ ├── clang_13 │ │ │ └── Dockerfile │ │ ├── cmake_320 │ │ │ └── Dockerfile │ │ └── distr.txt │ │ ├── jammy │ │ ├── base_build │ │ │ └── Dockerfile │ │ ├── boost_178 │ │ │ └── Dockerfile │ │ ├── build.sh │ │ ├── build_base.sh │ │ ├── build_boost.sh │ │ ├── build_clang.sh │ │ ├── build_cmake.sh │ │ ├── clang_13 │ │ │ └── Dockerfile │ │ ├── cmake_323 │ │ │ └── Dockerfile │ │ └── distr.txt │ │ ├── stretch │ │ ├── base_build │ │ │ └── Dockerfile │ │ ├── boost_175 │ │ │ └── Dockerfile │ │ ├── build.sh │ │ ├── build_base.sh │ │ ├── build_boost.sh │ │ ├── build_clang.sh │ │ ├── build_cmake.sh │ │ ├── clang_13 │ │ │ └── Dockerfile │ │ ├── cmake_320 │ │ │ └── Dockerfile │ │ └── distr.txt │ │ └── xenial │ │ ├── base_build │ │ └── Dockerfile │ │ ├── boost_175 │ │ └── Dockerfile │ │ ├── build.sh │ │ ├── build_base.sh │ │ ├── build_boost.sh │ │ ├── build_clang.sh │ │ ├── build_cmake.sh │ │ ├── clang_12 │ │ └── Dockerfile │ │ ├── cmake_320 │ │ └── Dockerfile │ │ └── distr.txt ├── check_deps_in_repos.sh ├── deb │ ├── README.Debian.in │ ├── README.Debian.in.prepare.php │ ├── conffiles-common.in │ ├── conffiles-server.in │ ├── conffiles-tools.in │ ├── manticore-indexer.service.in │ ├── manticore-indexer@.service.in │ ├── manticore-indexer_global.default.in │ ├── manticore.default.in │ ├── manticore.logrotate.in │ ├── manticore.service.in │ ├── manticore_new_cluster │ ├── postinst-common.in │ ├── postinst-core.in │ ├── postinst-server.head │ ├── postinst.debian.tail │ ├── postinst.in.in │ ├── postinst.ubuntu.tail │ ├── postrm-common.in │ ├── postrm-core.in │ ├── postrm-server.in │ ├── prerm.debian.in │ └── prerm.ubuntu.in ├── dockerhub_deploy.sh ├── gitlab-release.yml ├── nsis-release.yml ├── rpm │ ├── manticore-common.post.in │ ├── manticore-core.post.in │ ├── manticore-indexer.service.in │ ├── manticore-indexer@.service.in │ ├── manticore-indexer_global.default.in │ ├── manticore-server.post.in │ ├── manticore-tools.preun │ ├── manticore.logrotate.in │ ├── manticore.service.in │ ├── manticore.tmpfiles.in │ └── manticore_new_cluster ├── test_kit_docker_build.sh └── test_kit_docker_push.sh ├── doc ├── binary-logging.md ├── indexer.1 ├── indextool.1 ├── internal-binary-protocol.md ├── internals-coding-standard.txt ├── internals-format-versions.txt ├── internals-index-format.md ├── md2man.bash └── searchd.1 ├── docker-compose-test.yml ├── example.sql ├── galera_packaging ├── CommonDeb.cmake ├── CommonRpm.cmake ├── README.md ├── build_bionic.cmake ├── build_bookworm.cmake ├── build_bullseye.cmake ├── build_buster.cmake ├── build_focal.cmake ├── build_jammy.cmake ├── build_macos.cmake ├── build_rhel10.cmake ├── build_rhel7.cmake ├── build_rhel8.cmake ├── build_rhel9.cmake ├── description.txt ├── metainfo.cmake ├── packaging.cmake └── tmp ├── libicu └── CMakeLists.txt ├── libre2 ├── CMakeLists.txt └── libre2.patch ├── libstemmer_c ├── CMakeLists.txt └── README ├── manticore.conf.in ├── manual ├── chinese │ ├── 4.2.0_ps_on_vs_off.png │ ├── Changelog.md │ ├── Connecting_to_the_server.md │ ├── Connecting_to_the_server │ │ ├── HTTP.md │ │ ├── MySQL_protocol.md │ │ └── cli_browser.png │ ├── Creating_a_cluster │ │ ├── Adding_a_new_node.md │ │ ├── Creating_a_cluster.md │ │ ├── Remote_nodes.md │ │ ├── Remote_nodes │ │ │ ├── Load_balancing.md │ │ │ └── Mirroring.md │ │ └── Setting_up_replication │ │ │ ├── Adding_and_removing_a_table_from_a_replication_cluster.md │ │ │ ├── Cluster_recovery.md │ │ │ ├── Creating_a_replication_cluster.md │ │ │ ├── Deleting_a_replication_cluster.md │ │ │ ├── Joining_a_replication_cluster.md │ │ │ ├── Managing_replication_nodes.md │ │ │ ├── Replication_cluster_status.md │ │ │ ├── Restarting_a_cluster.md │ │ │ └── Setting_up_replication.md │ ├── Creating_a_table.md │ ├── Creating_a_table │ │ ├── Creating_a_distributed_table │ │ │ ├── Creating_a_distributed_table.md │ │ │ ├── Creating_a_local_distributed_table.md │ │ │ └── Remote_tables.md │ │ ├── Data_types.md │ │ ├── Local_tables.md │ │ ├── Local_tables │ │ │ ├── Percolate_table.md │ │ │ ├── Plain_and_real-time_table_settings.md │ │ │ ├── Plain_table.md │ │ │ ├── Real-time_table.md │ │ │ └── Template_table.md │ │ └── NLP_and_tokenization │ │ │ ├── Advanced_HTML_tokenization.md │ │ │ ├── Data_tokenization.md │ │ │ ├── Exceptions.md │ │ │ ├── Ignoring_stop-words.md │ │ │ ├── Languages_with_continuous_scripts.md │ │ │ ├── Low-level_tokenization.md │ │ │ ├── Morphology.md │ │ │ ├── Supported_languages.md │ │ │ ├── Wildcard_searching_settings.md │ │ │ └── Wordforms.md │ ├── Data_creation_and_modification │ │ ├── Adding_data_from_external_storages.md │ │ ├── Adding_data_from_external_storages │ │ │ ├── Adding_data_to_tables │ │ │ │ ├── Attaching_one_table_to_another.md │ │ │ │ ├── Importing_table.md │ │ │ │ ├── Killlist_in_plain_tables.md │ │ │ │ └── Merging_tables.md │ │ │ ├── Fetching_from_CSV,TSV.md │ │ │ ├── Fetching_from_XML_streams.md │ │ │ ├── Fetching_from_databases │ │ │ │ ├── Database_connection.md │ │ │ │ ├── Execution_of_fetch_queries.md │ │ │ │ ├── Introduction.md │ │ │ │ ├── Processing_fetched_data.md │ │ │ │ └── Ranged_queries.md │ │ │ ├── Main_delta.md │ │ │ ├── Plain_tables_creation.md │ │ │ └── Rotating_a_table.md │ │ ├── Adding_documents_to_a_table │ │ │ ├── Adding_documents_to_a_real-time_table.md │ │ │ └── Adding_rules_to_a_percolate_table.md │ │ ├── Data_creation_and_modification.md │ │ ├── Deleting_documents.md │ │ ├── Transactions.md │ │ └── Updating_documents │ │ │ ├── REPLACE.md │ │ │ ├── REPLACE_vs_UPDATE.md │ │ │ └── UPDATE.md │ ├── Deleting_a_table.md │ ├── Emptying_a_table.md │ ├── Extensions │ │ ├── FEDERATED.md │ │ ├── SphinxSE.md │ │ └── UDFs_and_Plugins │ │ │ ├── Listing_plugins.md │ │ │ ├── Plugins │ │ │ ├── Creating_a_plugin.md │ │ │ ├── Deleting_a_plugin.md │ │ │ ├── Enabling_and_disabling_buddy_plugins.md │ │ │ ├── Ranker_plugins.md │ │ │ ├── Reloading_plugins.md │ │ │ └── Token_filter_plugins.md │ │ │ ├── UDF.md │ │ │ ├── UDF │ │ │ ├── Creating_a_function.md │ │ │ └── Deleting_a_function.md │ │ │ └── UDFs_and_Plugins.md │ ├── Functions.md │ ├── Functions │ │ ├── Arrays_and_conditions_functions.md │ │ ├── Date_and_time_functions.md │ │ ├── Geo_spatial_functions.md │ │ ├── Mathematical_functions.md │ │ ├── Other_functions.md │ │ ├── Searching_and_ranking_functions.md │ │ ├── String_functions.md │ │ └── Type_casting_functions.md │ ├── Installation │ │ ├── Compiling_from_sources.md │ │ ├── Debian_and_Ubuntu.md │ │ ├── Docker.md │ │ ├── Installation.md │ │ ├── MacOS.md │ │ ├── Manticore_Buddy.md │ │ ├── Migration_from_Sphinx.md │ │ ├── RHEL_and_Centos.md │ │ └── Windows.md │ ├── Integration │ │ ├── Apache_Superset.md │ │ ├── DBeaver.md │ │ ├── Filebeat.md │ │ ├── Grafana.md │ │ ├── Kafka.md │ │ ├── Kibana.md │ │ └── Logstash.md │ ├── Introduction.md │ ├── Listing_tables.md │ ├── Logging │ │ ├── Binary_logging.md │ │ ├── Docker_logging.md │ │ ├── Query_logging.md │ │ ├── Rotating_query_and_server_logs.md │ │ └── Server_logging.md │ ├── Miscellaneous_tools.md │ ├── Node_info_and_management │ │ ├── KILL.md │ │ ├── Node_status.md │ │ ├── Profiling │ │ │ ├── Query_plan.md │ │ │ ├── Query_profile.md │ │ │ └── graphviz.png │ │ ├── SHOW_META.md │ │ ├── SHOW_QUERIES.md │ │ ├── SHOW_THREADS.md │ │ ├── SHOW_VARIABLES.md │ │ ├── SHOW_VERSION.md │ │ ├── SHOW_WARNINGS.md │ │ └── Table_settings_and_status │ │ │ ├── SHOW_TABLE_INDEXES.md │ │ │ ├── SHOW_TABLE_SETTINGS.md │ │ │ └── SHOW_TABLE_STATUS.md │ ├── Openapi.md │ ├── Quick_start_guide.md │ ├── README.md │ ├── Read_this_first.md │ ├── References.md │ ├── Reporting_bugs.md │ ├── Searching │ │ ├── Autocomplete.md │ │ ├── Collations.md │ │ ├── Cost_based_optimizer.md │ │ ├── Distributed_searching.md │ │ ├── Expressions.md │ │ ├── Faceted_search.md │ │ ├── Filters.md │ │ ├── Full_text_matching │ │ │ ├── Basic_usage.md │ │ │ ├── Boolean_optimization.md │ │ │ ├── Escaping.md │ │ │ ├── Operators.md │ │ │ ├── Profiling.md │ │ │ └── graphviz.png │ │ ├── Geo_search.md │ │ ├── Grouping.md │ │ ├── Highlighting.md │ │ ├── Intro.md │ │ ├── Joining.md │ │ ├── KNN.md │ │ ├── Multi-queries.md │ │ ├── Options.md │ │ ├── Pagination.md │ │ ├── Percolate_query.md │ │ ├── Query_cache.md │ │ ├── Search_results.md │ │ ├── Sorting_and_ranking.md │ │ ├── Spell_correction.md │ │ ├── Sub-selects.md │ │ ├── autocomplete.png │ │ ├── autocomplete_github_demo.png │ │ ├── didyoumean.png │ │ ├── faceted.png │ │ └── fuzzysearch.png │ ├── Securing_and_compacting_a_table │ │ ├── Backup_and_restore.md │ │ ├── Compacting_a_table.md │ │ ├── Flushing_RAM_chunk_to_a_new_disk_chunk.md │ │ ├── Flushing_RAM_chunk_to_disk.md │ │ ├── Flushing_attributes.md │ │ ├── Flushing_hostnames.md │ │ ├── Freezing_and_locking_a_table.md │ │ ├── Isolation_during_flushing_and_merging.md │ │ └── RT_table_structure.md │ ├── Security │ │ ├── Read_only.md │ │ └── SSL.md │ ├── Server_settings │ │ ├── Comments.md │ │ ├── Common.md │ │ ├── Inheritance_of_index_and_source_declarations.md │ │ ├── Scripted_configuration.md │ │ ├── Searchd.md │ │ ├── Setting_variables_online.md │ │ └── Special_suffixes.md │ ├── Starting_the_server.md │ ├── Starting_the_server │ │ ├── Docker.md │ │ ├── Linux.md │ │ ├── MacOS.md │ │ ├── Manually.md │ │ └── Windows.md │ ├── Telemetry.md │ ├── Updating_table_schema_and_settings.md │ ├── copy_example.png │ ├── images │ │ └── manticore_database_flow_1.png │ ├── latest_release_version │ ├── manticore_database_flow_2.png │ ├── mnt.cr.gif │ └── redirects ├── english │ ├── 4.2.0_ps_on_vs_off.png │ ├── Changelog.md │ ├── Connecting_to_the_server.md │ ├── Connecting_to_the_server │ │ ├── HTTP.md │ │ ├── MySQL_protocol.md │ │ └── cli_browser.png │ ├── Creating_a_cluster │ │ ├── Adding_a_new_node.md │ │ ├── Creating_a_cluster.md │ │ ├── Remote_nodes.md │ │ ├── Remote_nodes │ │ │ ├── Load_balancing.md │ │ │ └── Mirroring.md │ │ └── Setting_up_replication │ │ │ ├── Adding_and_removing_a_table_from_a_replication_cluster.md │ │ │ ├── Cluster_recovery.md │ │ │ ├── Creating_a_replication_cluster.md │ │ │ ├── Deleting_a_replication_cluster.md │ │ │ ├── Joining_a_replication_cluster.md │ │ │ ├── Managing_replication_nodes.md │ │ │ ├── Replication_cluster_status.md │ │ │ ├── Restarting_a_cluster.md │ │ │ └── Setting_up_replication.md │ ├── Creating_a_table.md │ ├── Creating_a_table │ │ ├── Creating_a_distributed_table │ │ │ ├── Creating_a_distributed_table.md │ │ │ ├── Creating_a_local_distributed_table.md │ │ │ └── Remote_tables.md │ │ ├── Data_types.md │ │ ├── Local_tables.md │ │ ├── Local_tables │ │ │ ├── Percolate_table.md │ │ │ ├── Plain_and_real-time_table_settings.md │ │ │ ├── Plain_table.md │ │ │ ├── Real-time_table.md │ │ │ └── Template_table.md │ │ └── NLP_and_tokenization │ │ │ ├── Advanced_HTML_tokenization.md │ │ │ ├── Data_tokenization.md │ │ │ ├── Exceptions.md │ │ │ ├── Ignoring_stop-words.md │ │ │ ├── Languages_with_continuous_scripts.md │ │ │ ├── Low-level_tokenization.md │ │ │ ├── Morphology.md │ │ │ ├── Supported_languages.md │ │ │ ├── Wildcard_searching_settings.md │ │ │ └── Wordforms.md │ ├── Data_creation_and_modification │ │ ├── Adding_data_from_external_storages.md │ │ ├── Adding_data_from_external_storages │ │ │ ├── Adding_data_to_tables │ │ │ │ ├── Attaching_one_table_to_another.md │ │ │ │ ├── Importing_table.md │ │ │ │ ├── Killlist_in_plain_tables.md │ │ │ │ └── Merging_tables.md │ │ │ ├── Fetching_from_CSV,TSV.md │ │ │ ├── Fetching_from_XML_streams.md │ │ │ ├── Fetching_from_databases │ │ │ │ ├── Database_connection.md │ │ │ │ ├── Execution_of_fetch_queries.md │ │ │ │ ├── Introduction.md │ │ │ │ ├── Processing_fetched_data.md │ │ │ │ └── Ranged_queries.md │ │ │ ├── Main_delta.md │ │ │ ├── Plain_tables_creation.md │ │ │ └── Rotating_a_table.md │ │ ├── Adding_documents_to_a_table │ │ │ ├── Adding_documents_to_a_real-time_table.md │ │ │ └── Adding_rules_to_a_percolate_table.md │ │ ├── Data_creation_and_modification.md │ │ ├── Deleting_documents.md │ │ ├── Transactions.md │ │ └── Updating_documents │ │ │ ├── REPLACE.md │ │ │ ├── REPLACE_vs_UPDATE.md │ │ │ └── UPDATE.md │ ├── Deleting_a_table.md │ ├── Emptying_a_table.md │ ├── Extensions │ │ ├── FEDERATED.md │ │ ├── SphinxSE.md │ │ └── UDFs_and_Plugins │ │ │ ├── Listing_plugins.md │ │ │ ├── Plugins │ │ │ ├── Creating_a_plugin.md │ │ │ ├── Deleting_a_plugin.md │ │ │ ├── Enabling_and_disabling_buddy_plugins.md │ │ │ ├── Ranker_plugins.md │ │ │ ├── Reloading_plugins.md │ │ │ └── Token_filter_plugins.md │ │ │ ├── UDF.md │ │ │ ├── UDF │ │ │ ├── Creating_a_function.md │ │ │ └── Deleting_a_function.md │ │ │ └── UDFs_and_Plugins.md │ ├── Functions.md │ ├── Functions │ │ ├── Arrays_and_conditions_functions.md │ │ ├── Date_and_time_functions.md │ │ ├── Geo_spatial_functions.md │ │ ├── Mathematical_functions.md │ │ ├── Other_functions.md │ │ ├── Searching_and_ranking_functions.md │ │ ├── String_functions.md │ │ └── Type_casting_functions.md │ ├── Installation │ │ ├── Compiling_from_sources.md │ │ ├── Debian_and_Ubuntu.md │ │ ├── Docker.md │ │ ├── Installation.md │ │ ├── MacOS.md │ │ ├── Manticore_Buddy.md │ │ ├── Migration_from_Sphinx.md │ │ ├── RHEL_and_Centos.md │ │ └── Windows.md │ ├── Integration │ │ ├── Apache_Superset.md │ │ ├── DBeaver.md │ │ ├── Filebeat.md │ │ ├── Grafana.md │ │ ├── Kafka.md │ │ ├── Kibana.md │ │ └── Logstash.md │ ├── Introduction.md │ ├── Listing_tables.md │ ├── Logging │ │ ├── Binary_logging.md │ │ ├── Docker_logging.md │ │ ├── Query_logging.md │ │ ├── Rotating_query_and_server_logs.md │ │ └── Server_logging.md │ ├── Miscellaneous_tools.md │ ├── Node_info_and_management │ │ ├── KILL.md │ │ ├── Node_status.md │ │ ├── Profiling │ │ │ ├── Query_plan.md │ │ │ ├── Query_profile.md │ │ │ └── graphviz.png │ │ ├── SHOW_META.md │ │ ├── SHOW_QUERIES.md │ │ ├── SHOW_THREADS.md │ │ ├── SHOW_VARIABLES.md │ │ ├── SHOW_VERSION.md │ │ ├── SHOW_WARNINGS.md │ │ └── Table_settings_and_status │ │ │ ├── SHOW_TABLE_INDEXES.md │ │ │ ├── SHOW_TABLE_SETTINGS.md │ │ │ └── SHOW_TABLE_STATUS.md │ ├── Openapi.md │ ├── Quick_start_guide.md │ ├── README.md │ ├── Read_this_first.md │ ├── References.md │ ├── Reporting_bugs.md │ ├── Searching │ │ ├── Autocomplete.md │ │ ├── Collations.md │ │ ├── Cost_based_optimizer.md │ │ ├── Distributed_searching.md │ │ ├── Expressions.md │ │ ├── Faceted_search.md │ │ ├── Filters.md │ │ ├── Full_text_matching │ │ │ ├── Basic_usage.md │ │ │ ├── Boolean_optimization.md │ │ │ ├── Escaping.md │ │ │ ├── Operators.md │ │ │ ├── Profiling.md │ │ │ └── graphviz.png │ │ ├── Geo_search.md │ │ ├── Grouping.md │ │ ├── Highlighting.md │ │ ├── Intro.md │ │ ├── Joining.md │ │ ├── KNN.md │ │ ├── Multi-queries.md │ │ ├── Options.md │ │ ├── Pagination.md │ │ ├── Percolate_query.md │ │ ├── Query_cache.md │ │ ├── Search_results.md │ │ ├── Sorting_and_ranking.md │ │ ├── Spell_correction.md │ │ ├── Sub-selects.md │ │ ├── autocomplete.png │ │ ├── autocomplete_github_demo.png │ │ ├── didyoumean.png │ │ ├── faceted.png │ │ └── fuzzysearch.png │ ├── Securing_and_compacting_a_table │ │ ├── Backup_and_restore.md │ │ ├── Compacting_a_table.md │ │ ├── Flushing_RAM_chunk_to_a_new_disk_chunk.md │ │ ├── Flushing_RAM_chunk_to_disk.md │ │ ├── Flushing_attributes.md │ │ ├── Flushing_hostnames.md │ │ ├── Freezing_and_locking_a_table.md │ │ ├── Isolation_during_flushing_and_merging.md │ │ └── RT_table_structure.md │ ├── Security │ │ ├── Read_only.md │ │ └── SSL.md │ ├── Server_settings │ │ ├── Comments.md │ │ ├── Common.md │ │ ├── Inheritance_of_index_and_source_declarations.md │ │ ├── Scripted_configuration.md │ │ ├── Searchd.md │ │ ├── Setting_variables_online.md │ │ └── Special_suffixes.md │ ├── Starting_the_server.md │ ├── Starting_the_server │ │ ├── Docker.md │ │ ├── Linux.md │ │ ├── MacOS.md │ │ ├── Manually.md │ │ └── Windows.md │ ├── Telemetry.md │ ├── Updating_table_schema_and_settings.md │ ├── copy_example.png │ ├── images │ │ └── manticore_database_flow_1.png │ ├── latest_release_version │ ├── manticore_database_flow_2.png │ ├── mnt.cr.gif │ └── redirects ├── latest_release_version └── russian │ ├── 4.2.0_ps_on_vs_off.png │ ├── Changelog.md │ ├── Connecting_to_the_server.md │ ├── Connecting_to_the_server │ ├── HTTP.md │ ├── MySQL_protocol.md │ └── cli_browser.png │ ├── Creating_a_cluster │ ├── Adding_a_new_node.md │ ├── Creating_a_cluster.md │ ├── Remote_nodes.md │ ├── Remote_nodes │ │ ├── Load_balancing.md │ │ └── Mirroring.md │ └── Setting_up_replication │ │ ├── Adding_and_removing_a_table_from_a_replication_cluster.md │ │ ├── Cluster_recovery.md │ │ ├── Creating_a_replication_cluster.md │ │ ├── Deleting_a_replication_cluster.md │ │ ├── Joining_a_replication_cluster.md │ │ ├── Managing_replication_nodes.md │ │ ├── Replication_cluster_status.md │ │ ├── Restarting_a_cluster.md │ │ └── Setting_up_replication.md │ ├── Creating_a_table.md │ ├── Creating_a_table │ ├── Creating_a_distributed_table │ │ ├── Creating_a_distributed_table.md │ │ ├── Creating_a_local_distributed_table.md │ │ └── Remote_tables.md │ ├── Data_types.md │ ├── Local_tables.md │ ├── Local_tables │ │ ├── Percolate_table.md │ │ ├── Plain_and_real-time_table_settings.md │ │ ├── Plain_table.md │ │ ├── Real-time_table.md │ │ └── Template_table.md │ └── NLP_and_tokenization │ │ ├── Advanced_HTML_tokenization.md │ │ ├── Data_tokenization.md │ │ ├── Exceptions.md │ │ ├── Ignoring_stop-words.md │ │ ├── Languages_with_continuous_scripts.md │ │ ├── Low-level_tokenization.md │ │ ├── Morphology.md │ │ ├── Supported_languages.md │ │ ├── Wildcard_searching_settings.md │ │ └── Wordforms.md │ ├── Data_creation_and_modification │ ├── Adding_data_from_external_storages.md │ ├── Adding_data_from_external_storages │ │ ├── Adding_data_to_tables │ │ │ ├── Attaching_one_table_to_another.md │ │ │ ├── Importing_table.md │ │ │ ├── Killlist_in_plain_tables.md │ │ │ └── Merging_tables.md │ │ ├── Fetching_from_CSV,TSV.md │ │ ├── Fetching_from_XML_streams.md │ │ ├── Fetching_from_databases │ │ │ ├── Database_connection.md │ │ │ ├── Execution_of_fetch_queries.md │ │ │ ├── Introduction.md │ │ │ ├── Processing_fetched_data.md │ │ │ └── Ranged_queries.md │ │ ├── Main_delta.md │ │ ├── Plain_tables_creation.md │ │ └── Rotating_a_table.md │ ├── Adding_documents_to_a_table │ │ ├── Adding_documents_to_a_real-time_table.md │ │ └── Adding_rules_to_a_percolate_table.md │ ├── Data_creation_and_modification.md │ ├── Deleting_documents.md │ ├── Transactions.md │ └── Updating_documents │ │ ├── REPLACE.md │ │ ├── REPLACE_vs_UPDATE.md │ │ └── UPDATE.md │ ├── Deleting_a_table.md │ ├── Emptying_a_table.md │ ├── Extensions │ ├── FEDERATED.md │ ├── SphinxSE.md │ └── UDFs_and_Plugins │ │ ├── Listing_plugins.md │ │ ├── Plugins │ │ ├── Creating_a_plugin.md │ │ ├── Deleting_a_plugin.md │ │ ├── Enabling_and_disabling_buddy_plugins.md │ │ ├── Ranker_plugins.md │ │ ├── Reloading_plugins.md │ │ └── Token_filter_plugins.md │ │ ├── UDF.md │ │ ├── UDF │ │ ├── Creating_a_function.md │ │ └── Deleting_a_function.md │ │ └── UDFs_and_Plugins.md │ ├── Functions.md │ ├── Functions │ ├── Arrays_and_conditions_functions.md │ ├── Date_and_time_functions.md │ ├── Geo_spatial_functions.md │ ├── Mathematical_functions.md │ ├── Other_functions.md │ ├── Searching_and_ranking_functions.md │ ├── String_functions.md │ └── Type_casting_functions.md │ ├── Installation │ ├── Compiling_from_sources.md │ ├── Debian_and_Ubuntu.md │ ├── Docker.md │ ├── Installation.md │ ├── MacOS.md │ ├── Manticore_Buddy.md │ ├── Migration_from_Sphinx.md │ ├── RHEL_and_Centos.md │ └── Windows.md │ ├── Integration │ ├── Apache_Superset.md │ ├── DBeaver.md │ ├── Filebeat.md │ ├── Grafana.md │ ├── Kafka.md │ ├── Kibana.md │ └── Logstash.md │ ├── Introduction.md │ ├── Listing_tables.md │ ├── Logging │ ├── Binary_logging.md │ ├── Docker_logging.md │ ├── Query_logging.md │ ├── Rotating_query_and_server_logs.md │ └── Server_logging.md │ ├── Miscellaneous_tools.md │ ├── Node_info_and_management │ ├── KILL.md │ ├── Node_status.md │ ├── Profiling │ │ ├── Query_plan.md │ │ ├── Query_profile.md │ │ └── graphviz.png │ ├── SHOW_META.md │ ├── SHOW_QUERIES.md │ ├── SHOW_THREADS.md │ ├── SHOW_VARIABLES.md │ ├── SHOW_VERSION.md │ ├── SHOW_WARNINGS.md │ └── Table_settings_and_status │ │ ├── SHOW_TABLE_INDEXES.md │ │ ├── SHOW_TABLE_SETTINGS.md │ │ └── SHOW_TABLE_STATUS.md │ ├── Openapi.md │ ├── Quick_start_guide.md │ ├── README.md │ ├── Read_this_first.md │ ├── References.md │ ├── Reporting_bugs.md │ ├── Searching │ ├── Autocomplete.md │ ├── Collations.md │ ├── Cost_based_optimizer.md │ ├── Distributed_searching.md │ ├── Expressions.md │ ├── Faceted_search.md │ ├── Filters.md │ ├── Full_text_matching │ │ ├── Basic_usage.md │ │ ├── Boolean_optimization.md │ │ ├── Escaping.md │ │ ├── Operators.md │ │ ├── Profiling.md │ │ └── graphviz.png │ ├── Geo_search.md │ ├── Grouping.md │ ├── Highlighting.md │ ├── Intro.md │ ├── Joining.md │ ├── KNN.md │ ├── Multi-queries.md │ ├── Options.md │ ├── Pagination.md │ ├── Percolate_query.md │ ├── Query_cache.md │ ├── Search_results.md │ ├── Sorting_and_ranking.md │ ├── Spell_correction.md │ ├── Sub-selects.md │ ├── autocomplete.png │ ├── autocomplete_github_demo.png │ ├── didyoumean.png │ ├── faceted.png │ └── fuzzysearch.png │ ├── Securing_and_compacting_a_table │ ├── Backup_and_restore.md │ ├── Compacting_a_table.md │ ├── Flushing_RAM_chunk_to_a_new_disk_chunk.md │ ├── Flushing_RAM_chunk_to_disk.md │ ├── Flushing_attributes.md │ ├── Flushing_hostnames.md │ ├── Freezing_and_locking_a_table.md │ ├── Isolation_during_flushing_and_merging.md │ └── RT_table_structure.md │ ├── Security │ ├── Read_only.md │ └── SSL.md │ ├── Server_settings │ ├── Comments.md │ ├── Common.md │ ├── Inheritance_of_index_and_source_declarations.md │ ├── Scripted_configuration.md │ ├── Searchd.md │ ├── Setting_variables_online.md │ └── Special_suffixes.md │ ├── Starting_the_server.md │ ├── Starting_the_server │ ├── Docker.md │ ├── Linux.md │ ├── MacOS.md │ ├── Manually.md │ └── Windows.md │ ├── Telemetry.md │ ├── Updating_table_schema_and_settings.md │ ├── copy_example.png │ ├── images │ └── manticore_database_flow_1.png │ ├── latest_release_version │ ├── manticore_database_flow_2.png │ ├── mnt.cr.gif │ └── redirects ├── memcheck.sh ├── memdocker.sh ├── misc ├── build-local-test-kit.sh ├── compare_manuals.sh ├── ctest │ ├── gltest.cmake │ ├── justbuild.cmake │ ├── memcheck.cmake │ ├── memcheck.md │ ├── ubertests │ │ ├── Dockerfile │ │ ├── aot.sh │ │ ├── entry_point.sh │ │ └── ubertests_docker_image │ │ │ ├── Dockerfile │ │ │ ├── entry_point.sh │ │ │ ├── resource.json │ │ │ └── sphinx │ └── valgrind │ │ ├── Dockerfile │ │ ├── entry_point.sh │ │ └── sphinx ├── dockerfiles │ ├── README.md │ ├── mysql │ │ ├── Dockerfile │ │ └── docker-entrypoint.sh │ ├── scripts │ │ ├── smoke.sh │ │ ├── smoke_libclient.sh │ │ └── smoke_tests.sh │ └── test │ │ └── Dockerfile ├── http-log-to-test ├── junit │ └── ctest2junit.xsl ├── manticore.natvis ├── manticore_lldb.py ├── raminfo.py ├── resolve.py ├── search_json_pretty.php ├── stopwords │ ├── af │ ├── ar │ ├── bg │ ├── bn │ ├── ca │ ├── ckb │ ├── cz │ ├── da │ ├── de │ ├── el │ ├── en │ ├── eo │ ├── es │ ├── et │ ├── eu │ ├── fa │ ├── fi │ ├── fr │ ├── ga │ ├── gl │ ├── he │ ├── hi │ ├── hr │ ├── hu │ ├── hy │ ├── id │ ├── it │ ├── ja │ ├── ko │ ├── la │ ├── languages_list.txt │ ├── lt │ ├── lv │ ├── mr │ ├── nl │ ├── no │ ├── pl │ ├── pt │ ├── ro │ ├── ru │ ├── sk │ ├── sl │ ├── so │ ├── st │ ├── sv │ ├── sw │ ├── th │ ├── tr │ ├── yo │ ├── zh │ └── zu ├── suggest │ ├── README │ ├── suggest.conf │ └── suggest.php ├── tzdata │ └── Asia │ │ └── Novosibirsk ├── winbundle │ ├── CURLConfig.cmake │ ├── EXPATConfig.cmake │ ├── IconvConfig.cmake │ ├── MysqlConfig.cmake │ ├── OpenSSLConfig.cmake │ ├── PostgreSQLConfig.cmake │ ├── README.md │ └── ZSTDConfig.cmake └── wordbreak.pl ├── 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 ├── searchd.log ├── smoke.sh ├── smokeci.sh ├── sphinxrev.cmake ├── sphinxrevcheck.cmake ├── src ├── .clang-format ├── .gitattributes ├── CMakeLists.txt ├── accumulator.cpp ├── accumulator.h ├── aggregate.cpp ├── aggregate.h ├── aggrexpr.cpp ├── aggrexpr.h ├── attribute.cpp ├── attribute.h ├── attrindex_builder.cpp ├── attrindex_builder.h ├── attrindex_merge.cpp ├── attrindex_merge.h ├── binlog.cpp ├── binlog.h ├── binlog_defs.h ├── charsets │ ├── chinese.txt │ ├── cjk.txt │ ├── cont.txt │ ├── english.txt │ ├── globalaliases.h.in │ ├── japanese.txt │ ├── korean.txt │ ├── non_cjk.txt │ ├── non_cont.txt │ ├── russian.txt │ └── thai.txt ├── chunksearchctx.cpp ├── chunksearchctx.h ├── cjkpreprocessor.cpp ├── cjkpreprocessor.h ├── client_session.h ├── client_task_info.cpp ├── client_task_info.h ├── collation.cpp ├── collation.h ├── columnarexpr.cpp ├── columnarexpr.h ├── columnarfilter.cpp ├── columnarfilter.h ├── columnargrouper.cpp ├── columnargrouper.h ├── columnarlib.cpp ├── columnarlib.h ├── columnarmisc.cpp ├── columnarmisc.h ├── columnarrt.cpp ├── columnarrt.h ├── columnarsort.cpp ├── columnarsort.h ├── compressed_http.cpp ├── compressed_http.h ├── compressed_mysql_layer.cpp ├── compressed_mysql_layer.h ├── compressed_zlib_mysql.cpp ├── compressed_zlib_mysql.h ├── compressed_zstd_mysql.cpp ├── compressed_zstd_mysql.h ├── config_reloader.cpp ├── config_reloader.h ├── conversion.cpp ├── conversion.h ├── coro_stack.cpp ├── coro_stack.h ├── coro_waker.h ├── coroutine.cpp ├── coroutine.h ├── costestimate.cpp ├── costestimate.h ├── daemon │ ├── CMakeLists.txt │ ├── api_commands.h │ ├── api_search.cpp │ ├── api_search.h │ ├── crash_logger.cpp │ ├── crash_logger.h │ ├── daemon_log.cpp │ ├── failures_log.cpp │ ├── failures_log.h │ ├── http_log.cpp │ ├── logger.h │ ├── match_iterator.cpp │ ├── match_iterator.h │ ├── minimize_aggr_result.cpp │ ├── minimize_aggr_result.h │ ├── query_log.cpp │ ├── search_handler.cpp │ ├── search_handler.h │ ├── system_tables.cpp │ ├── winservice.cpp │ └── winservice.h ├── datareader.cpp ├── datareader.h ├── datetime.cpp ├── datetime.h ├── ddl.l ├── ddl.y ├── debug_cmds.cpp ├── debug_cmds.h ├── detail │ ├── coroutine_impl.h │ ├── expmeter.h │ ├── indexlink.cpp │ └── indexlink.h ├── dict │ ├── CMakeLists.txt │ ├── aggregate_hit.h │ ├── bin.cpp │ ├── bin.h │ ├── crc_engine.h │ ├── crc_engine_impl.h │ ├── dict_base.cpp │ ├── dict_base.h │ ├── dict_crc.cpp │ ├── dict_crc.h │ ├── dict_crc_impl.h │ ├── dict_entry.h │ ├── dict_exact.cpp │ ├── dict_keywords.cpp │ ├── dict_proxy.h │ ├── dict_star.cpp │ ├── infix │ │ ├── CMakeLists.txt │ │ ├── infix_builder.cpp │ │ └── infix_builder.h │ ├── stem │ │ ├── CMakeLists.txt │ │ ├── sphinxmetaphone.cpp │ │ ├── sphinxsoundex.cpp │ │ ├── sphinxstem.h │ │ ├── sphinxstemar.cpp │ │ ├── sphinxstemcz.cpp │ │ ├── sphinxstemen.cpp │ │ ├── sphinxstemru.cpp │ │ └── sphinxstemru.inl │ ├── template_dict_traits.cpp │ ├── template_dict_traits.h │ ├── word_forms.cpp │ └── word_forms.h ├── digest_sha1.cpp ├── digest_sha1.h ├── distinct.cpp ├── distinct.h ├── docidlookup.cpp ├── docidlookup.h ├── docs_collector.cpp ├── docs_collector.h ├── docstore.cpp ├── docstore.h ├── dynamic_idx.cpp ├── dynamic_idx.h ├── event.h ├── exprdatetime.cpp ├── exprdatetime.h ├── exprdocstore.cpp ├── exprdocstore.h ├── exprgeodist.cpp ├── exprgeodist.h ├── exprremap.cpp ├── exprremap.h ├── exprtraits.cpp ├── exprtraits.h ├── farmhash │ └── farmhash.h ├── fileio.cpp ├── fileio.h ├── fileutils.cpp ├── fileutils.h ├── frontendschema.cpp ├── frontendschema.h ├── fuzzer │ ├── CMakeLists.txt │ ├── dict.txt │ └── fuzzer.cpp ├── gbenches │ ├── CMakeLists.txt │ ├── appendf.cpp │ ├── cJSON_test.c │ ├── expressions.cpp │ ├── functions.cpp │ ├── geodist.cpp │ ├── json.cpp │ ├── locators.cpp │ ├── misc.cpp │ ├── popcount.cpp │ ├── stripper.cpp │ ├── text.cpp │ └── tokenizer.cpp ├── geodist.cpp ├── geodist.h ├── global_idf.cpp ├── global_idf.h ├── grouper.cpp ├── grouper.h ├── gtests │ ├── CMakeLists.txt │ ├── gtests_filter.cpp │ ├── gtests_functions.cpp │ ├── gtests_globalstate.cpp │ ├── gtests_hugetokenizer.cpp │ ├── gtests_json.cpp │ ├── gtests_pqstuff.cpp │ ├── gtests_rtstuff.cpp │ ├── gtests_searchd.cpp │ ├── gtests_searchdaemon.cpp │ ├── gtests_strfmt.cpp │ ├── gtests_stringbuilder.cpp │ ├── gtests_text.cpp │ ├── gtests_threadstuff.cpp │ ├── gtests_tokenizer.cpp │ ├── gtests_wsrep.cpp │ ├── libsphinxtest.txt │ └── libsphinxtest2.txt ├── hazard_pointer.cpp ├── hazard_pointer.h ├── histogram.cpp ├── histogram.h ├── http │ ├── http_parser.c │ ├── http_parser.h │ └── log_management.h ├── hyperloglog.cpp ├── hyperloglog.h ├── icu.cpp ├── icu.h ├── index_converter.cpp ├── index_rotator.cpp ├── index_rotator.h ├── indexcheck.cpp ├── indexcheck.h ├── indexer.cpp ├── indexfilebase.cpp ├── indexfilebase.h ├── indexfiles.cpp ├── indexfiles.h ├── indexformat.cpp ├── indexformat.h ├── indexing_sources │ ├── CMakeLists.txt │ ├── schema_configurator.h │ ├── source_document.cpp │ ├── source_document.h │ ├── source_mysql.cpp │ ├── source_mysql.h │ ├── source_odbc.cpp │ ├── source_odbc.h │ ├── source_pgsql.cpp │ ├── source_pgsql.h │ ├── source_sql.cpp │ ├── source_sql.h │ ├── source_stats.h │ ├── source_svpipe.cpp │ ├── source_svpipe.h │ ├── source_xmlpipe2.cpp │ └── source_xmlpipe2.h ├── indexsettings.cpp ├── indexsettings.h ├── indextool.cpp ├── jieba.cpp ├── jieba.h ├── joinsorter.cpp ├── joinsorter.h ├── json │ ├── cJSON.c │ └── cJSON.h ├── jsonqueryfilter.cpp ├── jsonqueryfilter.h ├── jsonsi.cpp ├── jsonsi.h ├── killlist.cpp ├── killlist.h ├── knnlib.cpp ├── knnlib.h ├── knnmisc.cpp ├── knnmisc.h ├── libutils.cpp ├── libutils.h ├── literal.h.in ├── loop_profiler.h ├── lz4 │ ├── lz4.c │ ├── lz4.h │ ├── lz4hc.c │ └── lz4hc.h ├── match.h ├── match_impl.h ├── memio.cpp ├── memio.h ├── memio_impl.h ├── mini_timer.cpp ├── mini_timer.h ├── net_action_accept.cpp ├── net_action_accept.h ├── netfetch.cpp ├── netfetch.h ├── netpoll.cpp ├── netpoll.h ├── netreceive_api.cpp ├── netreceive_api.h ├── netreceive_http.cpp ├── netreceive_http.h ├── netreceive_ql.cpp ├── netreceive_ql.h ├── networking_daemon.cpp ├── networking_daemon.h ├── perfetto │ ├── CMakeLists.txt │ └── README.txt ├── pollable_event.cpp ├── pollable_event.h ├── pseudosharding.cpp ├── pseudosharding.h ├── query_status.cpp ├── query_status.h ├── querycontext.cpp ├── querycontext.h ├── queryfilter.cpp ├── queryfilter.h ├── queryprofile.cpp ├── queryprofile.h ├── querystats.cpp ├── querystats.h ├── queuecreator.cpp ├── queuecreator.h ├── replication │ ├── CMakeLists.txt │ ├── api_command_cluster.cpp │ ├── api_command_cluster.h │ ├── cluster_binlog.cpp │ ├── cluster_binlog.h │ ├── cluster_commands.h │ ├── cluster_delete.cpp │ ├── cluster_delete.h │ ├── cluster_file_reserve.cpp │ ├── cluster_file_reserve.h │ ├── cluster_file_send.cpp │ ├── cluster_file_send.h │ ├── cluster_get_nodes.cpp │ ├── cluster_get_nodes.h │ ├── cluster_index_add_local.cpp │ ├── cluster_index_add_local.h │ ├── cluster_sst_progress.cpp │ ├── cluster_sst_progress.h │ ├── cluster_synced.cpp │ ├── cluster_synced.h │ ├── cluster_update_nodes.cpp │ ├── cluster_update_nodes.h │ ├── commit_monitor.cpp │ ├── commit_monitor.h │ ├── common.h │ ├── configuration.cpp │ ├── configuration.h │ ├── grastate.cpp │ ├── grastate.h │ ├── nodes.cpp │ ├── nodes.h │ ├── portrange.cpp │ ├── portrange.h │ ├── receiver_ctx.cpp │ ├── receiver_ctx.h │ ├── recv_state.cpp │ ├── recv_state.h │ ├── replicate_index.cpp │ ├── replicate_index.h │ ├── send_files.cpp │ ├── send_files.h │ ├── serialize.cpp │ ├── serialize.h │ ├── wsrep_cxx.cpp │ ├── wsrep_cxx.h │ ├── wsrep_cxx_int.h │ ├── wsrep_documentation │ │ └── wsrep_api_h.txt │ ├── wsrep_v25.cpp │ └── wsrep_v31.cpp ├── reserved.py ├── schema │ ├── CMakeLists.txt │ ├── columninfo.cpp │ ├── columninfo.h │ ├── helper.cpp │ ├── helper.h │ ├── ischema.h │ ├── locator.h │ ├── locator_impl.h │ ├── rset.cpp │ ├── rset.h │ ├── schema.cpp │ └── schema.h ├── schematransform.cpp ├── schematransform.h ├── searchd.cpp ├── searchdaemon.cpp ├── searchdaemon.h ├── searchdbuddy.cpp ├── searchdbuddy.h ├── searchdconfig.cpp ├── searchdconfig.h ├── searchdddl.cpp ├── searchdddl.h ├── searchdexpr.cpp ├── searchdexpr.h ├── searchdfields.cpp ├── searchdha.cpp ├── searchdha.h ├── searchdhttp.cpp ├── searchdhttp.h ├── searchdhttpcompat.cpp ├── searchdreplication.cpp ├── searchdreplication.h ├── searchdsql.cpp ├── searchdsql.h ├── searchdssl.cpp ├── searchdssl.h ├── searchdssl_stub.cpp ├── searchdtask.cpp ├── searchdtask.h ├── searchnode.cpp ├── searchnode.h ├── secondaryindex.cpp ├── secondaryindex.h ├── secondarylib.cpp ├── secondarylib.h ├── skip_cache.cpp ├── skip_cache.h ├── snippetfunctor.cpp ├── snippetfunctor.h ├── snippetindex.cpp ├── snippetindex.h ├── snippetpassage.cpp ├── snippetpassage.h ├── snippetstream.cpp ├── snippetstream.h ├── sortcomp.h ├── sortergroup.cpp ├── sortergroup.h ├── sorterprecalc.cpp ├── sorterprecalc.h ├── sorterscroll.cpp ├── sorterscroll.h ├── sortertraits.cpp ├── sortertraits.h ├── sortsetup.cpp ├── sortsetup.h ├── spelldump.cpp ├── sphinx.cpp ├── sphinx.h ├── sphinx_alter.cpp ├── sphinx_alter.h ├── sphinxaot.cpp ├── sphinxdefs.h ├── sphinxexcerpt.cpp ├── sphinxexcerpt.h ├── sphinxexpr.cpp ├── sphinxexpr.h ├── sphinxexpr.l ├── sphinxexpr.y ├── sphinxfilter.cpp ├── sphinxfilter.h ├── sphinxint.h ├── sphinxjson.cpp ├── sphinxjson.h ├── sphinxjson.l ├── sphinxjson.y ├── sphinxjsonquery.cpp ├── sphinxjsonquery.h ├── sphinxplugin.cpp ├── sphinxplugin.h ├── sphinxpq.cpp ├── sphinxpq.h ├── sphinxqcache.cpp ├── sphinxqcache.h ├── sphinxql.l ├── sphinxql.y ├── sphinxql_debug.cpp ├── sphinxql_debug.h ├── sphinxql_debug.l ├── sphinxql_debug.y ├── sphinxql_extra.cpp ├── sphinxql_extra.h ├── sphinxql_extra.l ├── sphinxql_extra.y ├── sphinxql_second.cpp ├── sphinxql_second.h ├── sphinxql_second.l ├── sphinxql_second.y ├── sphinxquery │ ├── CMakeLists.txt │ ├── common_subtree.cpp │ ├── parse_helper.cpp │ ├── parse_helper.h │ ├── sphinxquery.cpp │ ├── sphinxquery.h │ ├── sphinxquery.y │ ├── transform_andnotnotnot.cpp │ ├── transform_commonandnotfactor.cpp │ ├── transform_commoncompoundnot.cpp │ ├── transform_commonkeywords.cpp │ ├── transform_commonnot.cpp │ ├── transform_commonornot.cpp │ ├── transform_commonsubterm.cpp │ ├── transform_excessandnot.cpp │ ├── transform_hungoperand.cpp │ ├── transform_phrase.cpp │ ├── transformation.cpp │ ├── transformation.h │ ├── xqdebug.h │ ├── xqnode.cpp │ ├── xqparser.cpp │ └── xqparser.h ├── sphinxrt.cpp ├── sphinxrt.h ├── sphinxsearch.cpp ├── sphinxsearch.h ├── sphinxselect.y ├── sphinxsort.cpp ├── sphinxsort.h ├── sphinxstd.h ├── sphinxudf.c ├── sphinxudf.h ├── sphinxutils.cpp ├── sphinxutils.h ├── sphinxversion.cpp ├── sphinxversion.h.in ├── stackmock.cpp ├── stackmock.h ├── std │ ├── CMakeLists.txt │ ├── accessor.h │ ├── accessor_impl.h │ ├── at_scope_exit.h │ ├── attrstub.h │ ├── autoevent.cpp │ ├── autoevent.h │ ├── base64.cpp │ ├── base64.h │ ├── binarysearch.h │ ├── binarysearch_impl.h │ ├── bitcount.h │ ├── bitcount_impl.h │ ├── bitvec.h │ ├── bitvec_impl.h │ ├── blobs.h │ ├── blobs_impl.h │ ├── buffer.h │ ├── buffer_impl.h │ ├── checks.cpp │ ├── checks.h │ ├── circular_buffer.h │ ├── circular_buffer_impl.h │ ├── comma.h │ ├── comma_impl.h │ ├── comp.h │ ├── comp_impl.h │ ├── crc32.cpp │ ├── crc32.h │ ├── crc32_impl.h │ ├── datamove.h │ ├── datamove_impl.h │ ├── deleter.h │ ├── deleter_impl.h │ ├── env.cpp │ ├── env.h │ ├── escaped_builder.h │ ├── escaped_builder_impl.h │ ├── fastlog.cpp │ ├── fastlog.h │ ├── fastlog_impl.h │ ├── fatal.cpp │ ├── fatal.h │ ├── fixedvector.h │ ├── fixedvector_impl.h │ ├── fnv64.cpp │ ├── fnv64.h │ ├── format.h │ ├── generics.h │ ├── hash.h │ ├── helpers.h │ ├── helpers_impl.h │ ├── ints.h │ ├── iterations.h │ ├── iterations_impl.h │ ├── largebuffer.h │ ├── largebuffer_impl.h │ ├── log2.h │ ├── log2_impl.h │ ├── lrucache.h │ ├── lrucache_impl.h │ ├── mem.cpp │ ├── mem.h │ ├── mm.cpp │ ├── mm.h │ ├── mutex.cpp │ ├── mutex.h │ ├── num_conv.h │ ├── num_conv_impl.h │ ├── openhash.h │ ├── openhash_impl.h │ ├── orderedhash.h │ ├── orderedhash_impl.h │ ├── queue.h │ ├── queue_impl.h │ ├── rand.cpp │ ├── rand.h │ ├── refcounted_mt.h │ ├── refcounted_mt_impl.h │ ├── refptr.h │ ├── relimit.h │ ├── relimit_impl.h │ ├── rwlock.cpp │ ├── rwlock.h │ ├── rwlock_impl.h │ ├── scoped_comma.h │ ├── scoped_comma_impl.h │ ├── scopedlock.h │ ├── scopedlock_impl.h │ ├── sharedptr.h │ ├── sharedptr_impl.h │ ├── smalloc.cpp │ ├── smalloc.h │ ├── smalloc_impl.h │ ├── sort.h │ ├── sort_impl.h │ ├── sphwarn.cpp │ ├── sphwarn.h │ ├── spinlock.h │ ├── storage.h │ ├── strerrorm.h │ ├── string.cpp │ ├── string.h │ ├── string_impl.h │ ├── stringbuilder.cpp │ ├── stringbuilder.h │ ├── stringbuilder_impl.h │ ├── stringhash.cpp │ ├── stringhash.h │ ├── sys.cpp │ ├── sys.h │ ├── tdigest.cpp │ ├── tdigest.h │ ├── thread_annotations.h │ ├── threadrole.h │ ├── timers.cpp │ ├── timers.h │ ├── type_traits.h │ ├── uniq.h │ ├── uniq_impl.h │ ├── unique_lock.h │ ├── variant.h │ ├── variant_impl.h │ ├── vector.h │ ├── vector_impl.h │ ├── vectraits.h │ ├── vectraits_impl.h │ ├── widest.h │ ├── zip.h │ └── zip_impl.h ├── stripper │ ├── CMakeLists.txt │ ├── html_stripper.cpp │ ├── html_stripper.h │ └── html_stripper_tag.h ├── task_dispatcher.cpp ├── task_dispatcher.h ├── task_info.cpp ├── task_info.h ├── taskflushattrs.cpp ├── taskflushattrs.h ├── taskflushbinlog.cpp ├── taskflushbinlog.h ├── taskflushmutable.cpp ├── taskflushmutable.h ├── taskglobalidf.cpp ├── taskglobalidf.h ├── taskmalloctrim.cpp ├── taskmalloctrim.h ├── taskping.cpp ├── taskping.h ├── taskpreread.cpp ├── taskpreread.h ├── tasksavestate.cpp ├── tasksavestate.h ├── testrt.conf.in ├── testrt.cpp ├── tests.cpp ├── threads_detached.cpp ├── threadutils.cpp ├── threadutils.h ├── threadutils_impl.h ├── timeout_queue.cpp ├── timeout_queue.h ├── tokenizer │ ├── CMakeLists.txt │ ├── charset_definition_parser.cpp │ ├── charset_definition_parser.h │ ├── exceptions_trie.cpp │ ├── exceptions_trie.h │ ├── lowercaser.cpp │ ├── lowercaser.h │ ├── lowercaser_impl.h │ ├── multiform_container.h │ ├── remap_range.h │ ├── tok_internals.h │ ├── token_filter.h │ ├── tokenizer.cpp │ ├── tokenizer.h │ ├── tokenizer_bigram.cpp │ ├── tokenizer_multiform.cpp │ ├── tokenizer_plugin.cpp │ ├── tokenizer_utf8.cpp │ ├── tokenizerbase.cpp │ ├── tokenizerbase2.cpp │ ├── tokenizerbase2_impl.h │ └── tokenizerbase_impl.h ├── tracer.cpp ├── tracer.h ├── udfexample.c └── wordbreaker.cpp ├── stack.txt ├── test ├── .gitattributes ├── CMakeLists.txt ├── bench-results │ └── stub.txt ├── bench.php ├── bench │ ├── FILTER-chart1.xml │ ├── FILTER-chart2.xml │ ├── FILTER-chart3.xml │ ├── FILTER-chart4.xml │ ├── filter.xml │ ├── filter3.xml │ ├── fullscan.php │ ├── fullscan.xml │ ├── killlist_filter.xml │ ├── ljq1k.txt │ ├── match-modes.xml │ ├── rtmerge.xml │ ├── sphinx.html │ └── subtree_cache.xml ├── clean.cmd ├── clean.sh ├── clean_old.sh ├── clt-tests │ ├── base │ │ ├── basic-initialization-manticore-kafka.recb │ │ ├── dind │ │ │ ├── Dockerfile │ │ │ └── init.recb │ │ ├── kafka-reset-consumer-offsets.recb │ │ ├── replication │ │ │ ├── create-cluster.recb │ │ │ ├── join-cluster-on-all-nodes.recb │ │ │ ├── start-searchd-precach.recb │ │ │ └── stop-searchd.recb │ │ ├── searchd-with-flexible-ports.conf │ │ ├── start-kafka-kraft.recb │ │ ├── start-searchd-with-buddy.recb │ │ ├── start-searchd-with-cpustats.recb │ │ └── start-searchd.recb │ ├── buddy-plugins │ │ ├── test-enable-disable-buddy-plugin.rec │ │ ├── test-facet-with-option-fuzzy.rec │ │ ├── test-fuzzy-autocomplete-http.rec │ │ ├── test-fuzzy-search-dist-table.rec │ │ ├── test-fuzzy-search.rec │ │ ├── test-fuzzy-trailing-semicolon.rec │ │ ├── test-inconsistent-comunication-with-buddy.rec │ │ ├── test-prometheus-exporter.rec │ │ └── test-skipping-plugin-loading.rec │ ├── buddy │ │ ├── test-buddy-protocol-validation.rec │ │ ├── test-fuzzy-search-non-min-infix-len.rec │ │ ├── test-log-level-buddy-sync.rec │ │ ├── test-manticore-version-in-telemetry.rec │ │ ├── test-show-version.rec │ │ └── test-unserialize-error-absence-kafka-operations.rec │ ├── bugs │ │ ├── 1335-test-issue.rec │ │ ├── 3037-secondary-indexes-bug.rec │ │ ├── 3247-rt-save-disk-chunk-race.rec │ │ ├── 3428-test-having-total-found.rec │ │ ├── 3481-http-update-distributed-table-wrong-cluster-crash.rec │ │ ├── 3489-fuzzy-option-alias-bug.rec │ │ ├── 3602-knn-dist-attribute-error.rec │ │ ├── 3832-fuzzy-cli-json-multiquery.rec │ │ ├── 3844-max-ft-field-crash.rec │ │ ├── 3847-conflict-handling-verification.rec │ │ ├── 4009-qcache-secondaryindex-bug.rec │ │ ├── 567-fuzzy-search-skips-numeric-words.rec │ │ ├── 569-fuzzy-single-letter-word-merge.rec │ │ └── 599-fuzzy-join-facet-no-such-table.rec │ ├── core │ │ ├── boolean-simplify.rec │ │ ├── call-autocomplete-force-bigrams.rec │ │ ├── call-suggest-force-bigrams.rec │ │ ├── query-test-rt-table.rec │ │ ├── test-alter-rebuild-knn.rec │ │ ├── test-alter-rename-http.rec │ │ ├── test-alter-rename.rec │ │ ├── test-alter-table-distributed.rec │ │ ├── test-alter-table.rec │ │ ├── test-auto-schema.rec │ │ ├── test-create-table-like-existing-table-with-data.rec │ │ ├── test-expansion-phrase-limit.rec │ │ ├── test-external-files-handling-ramchunk.rec │ │ ├── test-external-files-handling.rec │ │ ├── test-freeze-unfreeze-update.rec │ │ ├── test-import-table.rec │ │ ├── test-truncate-distributed-table.rec │ │ ├── test-unfreeze-defrosts.rec │ │ └── test-warning-wordlist-size-mismatch.rec │ ├── data-manipulation │ │ ├── test-alter-rename-nightly.rec │ │ └── test-replace-into.rec │ ├── expected-errors │ │ ├── buddy-plugin-backup.rec │ │ ├── buddy-plugin-empty-string.rec │ │ ├── buddy-plugin-select.rec │ │ ├── buddy-plugin-show.rec │ │ ├── start-searchd.recb │ │ ├── test-character-transformation-when-sending-to-buddy.rec │ │ ├── test-declaration-of-duplicate-attributes.rec │ │ ├── test-declaration-of-duplicate-fields.rec │ │ ├── test-errors-insert-for-distributed-missing-table.rec │ │ ├── test-external-files-handling-negative.rec │ │ ├── test-fuzzy-search-negative.rec │ │ ├── test-fuzzy-sql-endpoint-negative.rec │ │ ├── test-inconsistency-in-error-messages.rec │ │ └── test-system-variables-error-handling.rec │ ├── fulltext-search │ │ └── test-name-of-fields-in-show-meta.rec │ ├── http-interface │ │ ├── cli-endpoint.rec │ │ ├── cli-json-endpoint.rec │ │ ├── error-handling.rec │ │ ├── multi-query.rec │ │ ├── show-version-http.rec │ │ ├── show-version-trailing-semicolon.rec │ │ ├── sql-endpoint.rec │ │ ├── sql-mode-raw-endpoint.rec │ │ ├── test-concurrent-requests-to-buddy.rec │ │ ├── test-content-type-header-daemon-only.rec │ │ ├── test-content-type-header-with-buddy.rec │ │ ├── test-distributed-inserts.rec │ │ ├── test-fuzzy-search-sql-endpoint.rec │ │ ├── test-inserts.rec │ │ └── test-manticore-handling-id.rec │ ├── indexer │ │ ├── indexer-latest-mysql-postgres │ │ │ ├── indexer-latest-mysql-postgres.rec │ │ │ ├── min_mysql.conf │ │ │ └── min_postgres.sql │ │ ├── test-max-iops.rec │ │ └── test-max-iosize.rec │ ├── indexing-error │ │ ├── csv_crash.conf │ │ ├── min_mysql.conf │ │ ├── min_postgres.sql │ │ ├── test-id-attribute-error-during-indexing.rec │ │ ├── tsv_crash.conf │ │ └── xml.conf │ ├── installation │ │ ├── check-backup.recb │ │ ├── check-searchd-process.recb │ │ ├── check-version │ │ │ ├── comparison-version.recb │ │ │ ├── export-current-version.recb │ │ │ └── export-new-version.recb │ │ ├── deb-dev-install.rec │ │ ├── deb-dev-update.rec │ │ ├── deb-release-install.rec │ │ ├── ex-sw-wf.recb │ │ ├── exceptions-stopwords-wordforms-validation-release-to-dev.rec │ │ ├── manticore-and-packages-installation.recb │ │ ├── rhel-dev-install.rec │ │ ├── rhel-dev-update.rec │ │ ├── rhel-release-install.rec │ │ ├── rhel7-release-install.rec │ │ ├── start-searchd-dev.recb │ │ ├── start-searchd-release.recb │ │ └── stop-searchd-dev.recb │ ├── integrations │ │ ├── dbeaver │ │ │ └── test-integrations-dbeaver.rec │ │ ├── filebeat │ │ │ ├── test-integrations-check-filebeat-versions.rec │ │ │ ├── test-integrations-filebeat.rec │ │ │ └── test-integrations-support-filebeat-versions.rec │ │ ├── fluentbit │ │ │ └── test-integrations-fluentbit.rec │ │ ├── grafana │ │ │ ├── test-integrations-check-grafana-versions.rec │ │ │ ├── test-integrations-grafana.rec │ │ │ └── test-integrations-test-grafana-versions.rec │ │ ├── kafka │ │ │ ├── dump.json │ │ │ ├── import.sh │ │ │ ├── script_versions_kafka.sh │ │ │ ├── test-integration-kafka-ms.rec │ │ │ ├── test-integration-kafka-partition-based-ingestion.rec │ │ │ ├── test-integration-kafka-version.rec │ │ │ └── test-unserialize-error-absence-kafka-operations.rec │ │ ├── logstash │ │ │ ├── test-integrations-check-logstash-versions.rec │ │ │ ├── test-integrations-logstash.rec │ │ │ └── test-integrations-test-logstash-versions.rec │ │ └── vector │ │ │ └── test-integrations-vector.rec │ ├── join │ │ ├── test-avg-select-join.rec │ │ └── test-join-query-logging-completeness.rec │ ├── kibana │ │ ├── test-kibana-log-to-test-script.rec │ │ └── test-parameter-for-installing-the-kibana-version.rec │ ├── mcl │ │ ├── auto-embeddings-backup-restore.rec │ │ ├── auto-embeddings-concurrent.rec │ │ ├── auto-embeddings-dml-test.rec │ │ ├── auto-embeddings-duplicate-id.rec │ │ ├── auto-embeddings-edge-cases.rec │ │ ├── auto-embeddings-endpoints.rec │ │ ├── auto-embeddings-error-handling.rec │ │ ├── auto-embeddings-from-vector-check.rec │ │ ├── auto-embeddings-hnsw-configs.rec │ │ ├── auto-embeddings-json-api.rec │ │ ├── auto-embeddings-knn-select-scenarios.rec │ │ ├── auto-embeddings-openai-remote.rec │ │ ├── auto-embeddings-syntax-check.rec │ │ ├── auto-embeddings-voyage-remote.rec │ │ └── base.recb │ ├── migration-es-ms │ │ ├── index.zip │ │ └── test-migration-es-ms.rec │ ├── mysqldump │ │ ├── common │ │ │ ├── mcl-all-json.recb │ │ │ ├── mcl-all-multi.recb │ │ │ ├── mcl-all-multi64.recb │ │ │ ├── mcl-id-json.recb │ │ │ ├── mcl-id-multi.recb │ │ │ ├── mcl-id-multi64.recb │ │ │ ├── mcl-only-json.recb │ │ │ ├── mcl-only-multi.recb │ │ │ ├── mcl-only-multi64.recb │ │ │ ├── no-mcl-json.recb │ │ │ ├── no-mcl-multi.recb │ │ │ ├── no-mcl-multi64.recb │ │ │ ├── pq-table-mysqldump.recb │ │ │ └── random-1m-dump-restore.recb │ │ ├── dumps │ │ │ ├── mcl-all │ │ │ │ ├── json-batch-1.sql │ │ │ │ ├── json-batch-2.sql │ │ │ │ ├── json-batch-3.sql │ │ │ │ ├── json.sql │ │ │ │ ├── multi-batch-1.sql │ │ │ │ ├── multi-batch-2.sql │ │ │ │ ├── multi-batch-3.sql │ │ │ │ ├── multi.sql │ │ │ │ ├── multi64-batch-1.sql │ │ │ │ ├── multi64-batch-2.sql │ │ │ │ ├── multi64-batch-3.sql │ │ │ │ └── multi64.sql │ │ │ ├── mcl-id │ │ │ │ ├── json-batch-1.sql │ │ │ │ ├── json-batch-2.sql │ │ │ │ ├── json-batch-3.sql │ │ │ │ ├── json.sql │ │ │ │ ├── multi-batch-1.sql │ │ │ │ ├── multi-batch-2.sql │ │ │ │ ├── multi-batch-3.sql │ │ │ │ ├── multi.sql │ │ │ │ ├── multi64-batch-1.sql │ │ │ │ ├── multi64-batch-2.sql │ │ │ │ ├── multi64-batch-3.sql │ │ │ │ └── multi64.sql │ │ │ ├── mcl-only │ │ │ │ ├── json-batch-1.sql │ │ │ │ ├── json-batch-2.sql │ │ │ │ ├── json-batch-3.sql │ │ │ │ ├── json.sql │ │ │ │ ├── multi-batch-1.sql │ │ │ │ ├── multi-batch-2.sql │ │ │ │ ├── multi-batch-3.sql │ │ │ │ ├── multi.sql │ │ │ │ ├── multi64-batch-1.sql │ │ │ │ ├── multi64-batch-2.sql │ │ │ │ ├── multi64-batch-3.sql │ │ │ │ └── multi64.sql │ │ │ └── no-mcl │ │ │ │ ├── json-batch-1.sql │ │ │ │ ├── json-batch-2.sql │ │ │ │ ├── json-batch-3.sql │ │ │ │ ├── json.sql │ │ │ │ ├── multi-batch-1.sql │ │ │ │ ├── multi-batch-2.sql │ │ │ │ ├── multi-batch-3.sql │ │ │ │ ├── multi.sql │ │ │ │ ├── multi64-batch-1.sql │ │ │ │ ├── multi64-batch-2.sql │ │ │ │ ├── multi64-batch-3.sql │ │ │ │ └── multi64.sql │ │ ├── maria │ │ │ ├── init.recb │ │ │ ├── mcl-all-json.rec │ │ │ ├── mcl-all-multi.rec │ │ │ ├── mcl-all-multi64.rec │ │ │ ├── mcl-id-json.rec │ │ │ ├── mcl-id-multi.rec │ │ │ ├── mcl-id-multi64.rec │ │ │ ├── mcl-only-json.rec │ │ │ ├── mcl-only-multi.rec │ │ │ ├── mcl-only-multi64.rec │ │ │ ├── no-mcl-json.rec │ │ │ ├── no-mcl-multi.rec │ │ │ ├── no-mcl-multi64.rec │ │ │ ├── pq-table-mysqldump.rec │ │ │ └── random-1m-dump-restore.rec │ │ ├── mysql │ │ │ ├── mcl-all-json.rec │ │ │ ├── mcl-all-multi.rec │ │ │ ├── mcl-all-multi64.rec │ │ │ ├── mcl-id-json.rec │ │ │ ├── mcl-id-multi.rec │ │ │ ├── mcl-id-multi64.rec │ │ │ ├── mcl-only-json.rec │ │ │ ├── mcl-only-multi.rec │ │ │ ├── mcl-only-multi64.rec │ │ │ ├── no-mcl-json.rec │ │ │ ├── no-mcl-multi.rec │ │ │ ├── no-mcl-multi64.rec │ │ │ ├── pq-table-mysqldump.rec │ │ │ └── random-1m-dump-restore.rec │ │ └── versions │ │ │ ├── mariadb │ │ │ ├── script_versions_mariadb.sh │ │ │ └── test-supported-mysqldump-mariadb-versions.rec │ │ │ └── mysql │ │ │ ├── script_versions_mysql.sh │ │ │ └── test-supported-mysqldump-mysql-versions.rec │ ├── performance-nightly │ │ ├── test-comparison-overhead-json-sql.rec │ │ └── test-performance-for-queries-with-multiple-disk-chunks.rec │ ├── performance │ │ ├── concurrent-load-search-stats-validation.rec │ │ ├── test-json-disk_chunks.rec │ │ ├── test-optimisation-and-update.rec │ │ └── test-show-table-tbl-name-status.rec │ ├── replication │ │ ├── fatal-invalid-port.rec │ │ ├── test-cluster-creation-without-replication.rec │ │ ├── test-generation-of-document-auto-id-in-replication.rec │ │ ├── test-ist-recovery-after-node-crash.rec │ │ ├── test-replication-with-mysqldump.rec │ │ ├── test-replication.rec │ │ └── test-sst-progress.rec │ ├── scripts │ │ ├── fnames.txt │ │ ├── generate-1mln-records.sh │ │ ├── generate-records-json.sh │ │ ├── generate-records.sh │ │ ├── issue-1335-dump.php │ │ ├── load_names_attr.php │ │ ├── names.txt │ │ └── surnames.txt │ ├── sharding │ │ ├── cluster │ │ │ ├── attach-table-while-joining-cluster.rec │ │ │ ├── join-cluster-while-attaching-table.rec │ │ │ ├── join-cluster-while-creating-another.rec │ │ │ ├── join-cluster-while-joining-another.rec │ │ │ ├── join-multiple-clusters-on-same-node.rec │ │ │ ├── multiple-join-single-alter-cluster.rec │ │ │ └── test-drop-sharded-clustering-table.rec │ │ ├── drop │ │ │ └── test-drop-sharded-table.rec │ │ ├── functional │ │ │ ├── functional-sharding-and-cluster-negative.rec │ │ │ ├── functional-sharding-positive.rec │ │ │ └── test-dist-table-shards-5000.rec │ │ ├── replication │ │ │ ├── create-table-1-node-10-shards.rec │ │ │ ├── create-table-2-nodes-4-shards.rec │ │ │ ├── create-table-3-nodes-6-shards.rec │ │ │ ├── create-table-5-nodes-60-shards.rec │ │ │ ├── test-data-manipulation.rec │ │ │ ├── test-distributed-inserts-with-replication.rec │ │ │ └── test-multi-node-sharding-and-replication.rec │ │ └── syntax │ │ │ ├── sharding-syntax-negative.rec │ │ │ └── sharding-syntax-positive.rec │ ├── tables-interaction │ │ └── test-tables-interaction.rec │ ├── test-configuration │ │ ├── show-settings.rec │ │ ├── show-threads.rec │ │ ├── test-buddy-max-connections-configuration.rec │ │ ├── test-buddy-requests-not-logged.rec │ │ ├── test-default-config.rec │ │ ├── test-update-with-query-log-min-msec.rec │ │ ├── test-writing-binlog-during-parallel-queries.rec │ │ └── timezone.rec │ └── vector-knn │ │ ├── test-knn-id.rec │ │ ├── test-knn-search-by-doc-id.rec │ │ ├── test-knn-validation.rec │ │ └── tets-insert-knn-errors.rec ├── data │ └── stub.txt ├── helpers.inc ├── helpers_rt.inc ├── html_120.txt ├── indextool │ ├── CMakeLists.txt │ ├── indextool.conf │ └── test.cmake ├── mre.rec ├── ql │ ├── README │ ├── data │ │ ├── rt.kill │ │ ├── rt.meta │ │ └── rt.ram │ ├── qltest.cs │ ├── qltest.java │ ├── qltest.php │ ├── qltest.py │ ├── qltest.rb │ ├── sphinx.conf │ ├── t.cmd │ └── t2.cmd ├── settings.inc ├── ssl_keys │ ├── server-cert.pem │ └── server-key.pem ├── 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 │ ├── wf_multi.txt │ ├── wf_multi2.txt │ ├── wf_multi3.txt │ └── wf_num.txt ├── test_023 │ ├── model.bin │ └── test.xml ├── test_024 │ ├── model.bin │ └── test.xml ├── test_025 │ ├── model.bin │ ├── s25.txt │ └── 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 │ ├── stopwords.txt │ └── test.xml ├── test_039 │ ├── model.bin │ └── test.xml ├── test_040 │ ├── model.bin │ └── test.xml ├── test_041 │ ├── model.bin │ ├── test.xml │ └── wordforms.txt ├── 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 │ ├── data1.csv │ ├── data1.xml │ ├── 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 │ ├── stop_blend.txt │ └── test.xml ├── test_064 │ ├── model.bin │ └── test.xml ├── test_065 │ ├── model.bin │ └── test.xml ├── test_066 │ ├── model.bin │ └── test.xml ├── test_067 │ ├── model.bin │ └── test.xml ├── test_068 │ ├── data1.csv │ ├── data1.tsv │ ├── data1.xml │ ├── data2.csv │ ├── data2.xml │ ├── data3.xml │ ├── data51.xml │ ├── data_embedded.xml │ ├── data_embedded1.xml │ ├── data_embedded2.xml │ ├── data_large.xml │ ├── data_spec.csv │ ├── data_spec.tsv │ ├── model.bin │ ├── test.xml │ └── test_kl.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 │ ├── words1.txt │ ├── words2.txt │ └── words3.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 │ ├── data3.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 │ └── wf_multi.txt ├── 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 │ ├── 512k.xml │ ├── empty.txt │ ├── 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 │ ├── exceptions.txt │ ├── 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 │ └── wordforms_multi_dest.txt ├── test_144 │ ├── model.bin │ └── test.xml ├── test_145 │ ├── model.bin │ ├── stop0.txt │ ├── 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 │ └── wf158.txt ├── 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 │ ├── synonyms3.txt │ ├── synonyms4.txt │ └── test.xml ├── test_166 │ ├── model.bin │ └── test.xml ├── test_167 │ ├── model.bin │ └── test.xml ├── test_168 │ ├── model.bin │ ├── test.xml │ ├── text1.txt │ └── text2.txt ├── test_169 │ ├── model.bin │ └── test.xml ├── test_170 │ ├── model.bin │ └── test.xml ├── test_171 │ ├── data_mm.tsv │ ├── 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 │ ├── hits1.xml │ ├── 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 │ ├── data_embedded.xml │ ├── model.bin │ └── test.xml ├── test_184 │ ├── data_ext.xml │ ├── data_fields.xml │ ├── data_int.xml │ ├── model.bin │ └── test.xml ├── test_185 │ ├── model.bin │ └── test.xml ├── test_186 │ ├── model.bin │ └── test.xml ├── test_187 │ ├── model.bin │ └── test.xml ├── test_188 │ ├── model.bin │ └── test.xml ├── test_189 │ ├── model.bin │ └── test.xml ├── test_190 │ ├── model.bin │ ├── refdata │ │ ├── agent1 │ │ │ ├── allfiles │ │ │ │ ├── text1.txt │ │ │ │ ├── text2.txt │ │ │ │ ├── text3.txt │ │ │ │ ├── text4.txt │ │ │ │ ├── text5.txt │ │ │ │ └── text6.txt │ │ │ └── scatteredfiles │ │ │ │ ├── text3.txt │ │ │ │ └── text4.txt │ │ ├── agent2 │ │ │ ├── allfiles │ │ │ │ ├── text1.txt │ │ │ │ ├── text2.txt │ │ │ │ ├── text3.txt │ │ │ │ ├── text4.txt │ │ │ │ ├── text5.txt │ │ │ │ └── text6.txt │ │ │ └── scatteredfiles │ │ │ │ ├── text5.txt │ │ │ │ └── text6.txt │ │ └── master │ │ │ ├── allfiles │ │ │ ├── text1.txt │ │ │ ├── text2.txt │ │ │ ├── text3.txt │ │ │ ├── text4.txt │ │ │ ├── text5.txt │ │ │ └── text6.txt │ │ │ └── scatteredfiles │ │ │ ├── text1.txt │ │ │ └── text2.txt │ └── test.xml ├── test_191 │ ├── model.bin │ └── test.xml ├── test_192 │ ├── model.bin │ ├── test.xml │ ├── wordforms-12.txt │ ├── wordforms-wb.txt │ └── wordforms.txt ├── test_193 │ ├── model.bin │ ├── stopwords.txt │ ├── test.xml │ └── wordforms.txt ├── test_194 │ ├── file1.txt │ ├── file2.txt │ ├── file3.txt │ ├── model.bin │ └── test.xml ├── test_195 │ ├── model.bin │ └── test.xml ├── test_196 │ ├── ex21.txt │ ├── model.bin │ ├── test.xml │ ├── wf1.txt │ ├── wf2.txt │ ├── wf21.txt │ ├── wf_pre.txt │ ├── wordforms.txt │ ├── words1.txt │ └── words2.txt ├── test_197 │ ├── model.bin │ └── test.xml ├── test_198 │ ├── model.bin │ └── test.xml ├── test_199 │ ├── model.bin │ ├── stopwords.txt │ └── test.xml ├── test_200 │ ├── model.bin │ └── test.xml ├── test_201 │ ├── model.bin │ └── test.xml ├── test_202 │ ├── model.bin │ └── test.xml ├── test_203 │ ├── model.bin │ └── test.xml ├── test_204 │ ├── model.bin │ └── test.xml ├── test_205 │ ├── model.bin │ └── test.xml ├── test_206 │ ├── model.bin │ └── test.xml ├── test_207 │ ├── model.bin │ ├── test.xml │ ├── wordforms.txt │ ├── wordforms2.txt │ └── wordforms3.txt ├── test_208 │ ├── model.bin │ └── test.xml ├── test_209 │ ├── model.bin │ └── test.xml ├── test_210 │ ├── model.bin │ ├── stopwords.txt │ └── test.xml ├── test_211 │ ├── model.bin │ └── test.xml ├── test_212 │ ├── model.bin │ └── test.xml ├── test_213 │ ├── model.bin │ └── test.xml ├── test_214 │ ├── model.bin │ └── test.xml ├── test_215 │ ├── model.bin │ └── test.xml ├── test_216 │ ├── model.bin │ └── test.xml ├── test_217 │ ├── model.bin │ └── test.xml ├── test_218 │ ├── data.xml │ ├── model.bin │ ├── test.xml │ └── wordforms.txt ├── test_219 │ ├── model.bin │ ├── test.xml │ └── wordforms.txt ├── test_220 │ ├── model.bin │ └── test.xml ├── test_221 │ ├── model.bin │ └── test.xml ├── test_222 │ ├── model.bin │ ├── test.xml │ └── wordforms.txt ├── test_223 │ ├── model.bin │ ├── test.xml │ └── wordforms.txt ├── test_224 │ ├── model.bin │ └── test.xml ├── test_225 │ ├── model.bin │ └── test.xml ├── test_226 │ ├── model.bin │ └── test.xml ├── test_227 │ ├── model.bin │ └── test.xml ├── test_228 │ ├── model.bin │ └── test.xml ├── test_229 │ ├── model.bin │ └── test.xml ├── test_230 │ ├── model.bin │ └── test.xml ├── test_231 │ ├── model.bin │ └── test.xml ├── test_232 │ ├── model.bin │ └── test.xml ├── test_233 │ ├── data │ │ ├── reload.spa │ │ ├── reload.spb │ │ ├── reload.spd │ │ ├── reload.spe │ │ ├── reload.sph │ │ ├── reload.spi │ │ ├── reload.spm │ │ ├── reload.spp │ │ ├── reload.spt │ │ ├── test.spa │ │ ├── test.spb │ │ ├── test.spd │ │ ├── test.spe │ │ ├── test.sph │ │ ├── test.spi │ │ ├── test.spm │ │ ├── test.spp │ │ └── test.spt │ ├── model.bin │ ├── reload_path │ │ └── .gitignore │ └── test.xml ├── test_234 │ ├── model.bin │ └── test.xml ├── test_235 │ ├── model.bin │ └── test.xml ├── test_236 │ ├── data1.csv │ ├── data1.tsv │ ├── data1.xml │ ├── data2.xml │ ├── data3.xml │ ├── data4.xml │ ├── model.bin │ └── test.xml ├── test_237 │ ├── model.bin │ └── test.xml ├── test_238 │ ├── model.bin │ └── test.xml ├── test_239 │ ├── model.bin │ └── test.xml ├── test_240 │ ├── model.bin │ └── test.xml ├── test_241 │ ├── model.bin │ └── test.xml ├── test_242 │ ├── model.bin │ └── test.xml ├── test_243 │ ├── model.bin │ └── test.xml ├── test_244 │ ├── model.bin │ └── test.xml ├── test_245 │ ├── data.xml │ ├── data_rev.xml │ ├── model.bin │ └── test.xml ├── test_246 │ ├── model.bin │ └── test.xml ├── test_247 │ ├── model.bin │ └── test.xml ├── test_248 │ ├── model.bin │ └── test.xml ├── test_249 │ ├── model.bin │ └── test.xml ├── test_250 │ ├── data │ │ ├── plain2.spa │ │ ├── plain2.spd │ │ ├── plain2.spe │ │ ├── plain2.sph │ │ ├── plain2.spi │ │ ├── plain2.spm │ │ ├── plain2.spp │ │ └── plain2.spt │ ├── model.bin │ └── test.xml ├── test_251 │ ├── model.bin │ └── test.xml ├── test_252 │ ├── model.bin │ └── test.xml ├── test_253 │ ├── model.bin │ └── test.xml ├── test_254 │ ├── model.bin │ ├── test.xml │ └── wordforms.txt ├── test_255 │ ├── model.bin │ ├── test.xml │ └── wf1.txt ├── test_256 │ ├── model.bin │ └── test.xml ├── test_257 │ ├── data1.csv │ ├── data1.tsv │ ├── data1.xml │ ├── data2.csv │ ├── data3.csv │ ├── model.bin │ └── test.xml ├── test_258 │ ├── model.bin │ └── test.xml ├── test_259 │ ├── model.bin │ └── test.xml ├── test_260 │ ├── model.bin │ └── test.xml ├── test_261 │ ├── model.bin │ └── test.xml ├── test_262 │ ├── model.bin │ └── test.xml ├── test_263 │ ├── model.bin │ ├── test.csv │ └── test.xml ├── test_264 │ ├── model.bin │ └── test.xml ├── test_265 │ ├── model.bin │ └── test.xml ├── test_266 │ ├── model.bin │ └── test.xml ├── test_267 │ ├── model.bin │ └── test.xml ├── test_268 │ ├── model.bin │ └── test.xml ├── test_269 │ ├── model.bin │ └── test.xml ├── test_270 │ ├── data1.tsv │ ├── model.bin │ └── test.xml ├── test_271 │ ├── model.bin │ └── test.xml ├── test_272 │ ├── model.bin │ └── test.xml ├── test_273 │ ├── model.bin │ └── test.xml ├── test_274 │ ├── model.bin │ └── test.xml ├── test_275 │ ├── model.bin │ └── test.xml ├── test_276 │ ├── model.bin │ └── test.xml ├── test_277 │ ├── model.bin │ └── test.xml ├── test_278 │ ├── model.bin │ └── test.xml ├── test_279 │ ├── model.bin │ └── test.xml ├── test_280 │ ├── model.bin │ └── test.xml ├── test_281 │ ├── model.bin │ └── test.xml ├── test_282 │ ├── model.bin │ └── test.xml ├── test_283 │ ├── model.bin │ └── test.xml ├── test_284 │ ├── model.bin │ └── test.xml ├── test_285 │ ├── model.bin │ └── test.xml ├── test_286 │ ├── model.bin │ └── test.xml ├── test_287 │ ├── model.bin │ └── test.xml ├── test_288 │ ├── model.bin │ └── test.xml ├── test_289 │ ├── model.bin │ └── test.xml ├── test_290 │ ├── model.bin │ └── test.xml ├── test_291 │ ├── model.bin │ └── test.xml ├── test_292 │ ├── model.bin │ └── test.xml ├── test_293 │ ├── model.bin │ └── test.xml ├── test_294 │ ├── model.bin │ └── test.xml ├── test_295 │ ├── model.bin │ └── test.xml ├── test_296 │ ├── model.bin │ └── test.xml ├── test_297 │ ├── model.bin │ └── test.xml ├── test_298 │ ├── model.bin │ └── test.xml ├── test_299 │ ├── model.bin │ └── test.xml ├── test_300 │ ├── bug.py │ ├── model.bin │ └── test.xml ├── test_301 │ ├── model.bin │ └── test.xml ├── test_302 │ ├── model.bin │ └── test.xml ├── test_303 │ ├── model.bin │ └── test.xml ├── test_304 │ ├── model.bin │ └── test.xml ├── test_305 │ ├── model.bin │ └── test.xml ├── test_306 │ ├── model.bin │ └── test.xml ├── test_307 │ ├── model.bin │ └── test.xml ├── test_308 │ ├── model.bin │ └── test.xml ├── test_309 │ ├── jieba_user_dict.txt │ ├── model.bin │ └── test.xml ├── test_310 │ ├── data.xml │ ├── jieba_user_dict.txt │ ├── model.bin │ ├── test.xml │ └── wordforms.txt ├── test_311 │ ├── data.xml │ ├── model.bin │ └── test.xml ├── test_312 │ ├── model.bin │ └── test.xml ├── test_313 │ ├── model.bin │ └── test.xml ├── test_314 │ ├── model.bin │ └── test.xml ├── test_315 │ ├── model.bin │ └── test.xml ├── test_316 │ ├── model.bin │ └── test.xml ├── test_317 │ ├── model.bin │ └── test.xml ├── test_318 │ ├── model.bin │ └── test.xml ├── test_319 │ ├── model.bin │ └── test.xml ├── test_320 │ ├── model.bin │ └── test.xml ├── test_321 │ ├── model.bin │ └── test.xml ├── test_322 │ ├── model.bin │ └── test.xml ├── test_323 │ ├── model.bin │ └── test.xml ├── test_324 │ ├── model.bin │ └── test.xml ├── test_325 │ ├── model.bin │ └── test.xml ├── test_326 │ ├── model.bin │ └── test.xml ├── test_327 │ ├── model.bin │ └── test.xml ├── test_328 │ ├── model.bin │ └── test.xml ├── test_329 │ ├── model.bin │ └── test.xml ├── test_330 │ ├── model.bin │ └── test.xml ├── test_331 │ ├── model.bin │ └── test.xml ├── test_332 │ ├── model.bin │ └── test.xml ├── test_333 │ ├── model.bin │ └── test.xml ├── test_334 │ ├── exc.txt │ ├── model.bin │ └── test.xml ├── test_335 │ ├── model.bin │ └── test.xml ├── test_336 │ ├── model.bin │ └── test.xml ├── test_337 │ ├── model.bin │ └── test.xml ├── test_338 │ ├── model.bin │ └── test.xml ├── test_339 │ ├── model.bin │ └── test.xml ├── test_340 │ ├── model.bin │ └── test.xml ├── test_341 │ ├── model.bin │ └── test.xml ├── test_342 │ ├── model.bin │ └── test.xml ├── test_343 │ ├── model.bin │ └── test.xml ├── test_344 │ ├── model.bin │ └── test.xml ├── test_345 │ ├── model.bin │ └── test.xml ├── test_346 │ ├── model.bin │ └── test.xml ├── test_347 │ ├── model.bin │ └── test.xml ├── test_348 │ ├── model.bin │ └── test.xml ├── test_349 │ ├── model.bin │ └── test.xml ├── test_350 │ ├── model.bin │ └── test.xml ├── test_351 │ ├── model.bin │ └── test.xml ├── test_352 │ ├── model.bin │ └── test.xml ├── test_353 │ ├── model.bin │ └── test.xml ├── test_354 │ ├── model.bin │ └── test.xml ├── test_355 │ ├── model.bin │ └── test.xml ├── test_356 │ ├── model.bin │ └── test.xml ├── test_357 │ ├── model.bin │ └── test.xml ├── test_358 │ ├── model.bin │ └── test.xml ├── test_359 │ ├── model.bin │ └── test.xml ├── test_360 │ ├── model.bin │ ├── stops.txt │ └── test.xml ├── test_361 │ ├── model.bin │ └── test.xml ├── test_362 │ ├── model.bin │ └── test.xml ├── test_364 │ ├── model.bin │ └── test.xml ├── test_365 │ ├── model.bin │ └── test.xml ├── test_366 │ ├── model.bin │ └── test.xml ├── test_367 │ ├── model.bin │ └── test.xml ├── test_368 │ ├── model.bin │ └── test.xml ├── test_369 │ ├── model.bin │ └── test.xml ├── test_370 │ ├── model.bin │ └── test.xml ├── test_371 │ ├── model.bin │ └── test.xml ├── test_372 │ ├── model.bin │ └── test.xml ├── test_373 │ ├── model.bin │ └── test.xml ├── test_374 │ ├── model.bin │ └── test.xml ├── test_375 │ ├── model.bin │ └── test.xml ├── test_376 │ ├── model.bin │ └── test.xml ├── test_377 │ ├── model.bin │ └── test.xml ├── test_378 │ ├── model.bin │ └── test.xml ├── test_379 │ ├── model.bin │ └── test.xml ├── test_380 │ ├── model.bin │ └── test.xml ├── test_381 │ ├── model.bin │ └── test.xml ├── test_382 │ ├── model.bin │ └── test.xml ├── test_383 │ ├── model.bin │ └── test.xml ├── test_384 │ ├── model.bin │ └── test.xml ├── test_385 │ ├── model.bin │ └── test.xml ├── test_386 │ ├── model.bin │ └── test.xml ├── test_387 │ ├── model.bin │ └── test.xml ├── test_388 │ ├── model.bin │ └── test.xml ├── test_390 │ ├── model.bin │ └── test.xml ├── test_391 │ ├── model.bin │ └── test.xml ├── test_392 │ ├── model.bin │ └── test.xml ├── test_393 │ ├── model.bin │ └── test.xml ├── test_394 │ ├── model.bin │ └── test.xml ├── test_395 │ ├── model.bin │ └── test.xml ├── test_396 │ ├── model.bin │ └── test.xml ├── test_397 │ ├── model.bin │ ├── stops.txt │ ├── test.xml │ └── wordforms.txt ├── test_398 │ ├── model.bin │ └── test.xml ├── test_399 │ ├── model.bin │ └── test.xml ├── test_400 │ ├── model.bin │ └── test.xml ├── test_401 │ ├── data.xml │ ├── model.bin │ └── test.xml ├── test_402 │ ├── model.bin │ └── test.xml ├── test_403 │ ├── exc1.txt │ ├── exceptions.txt │ ├── model.bin │ ├── stops.txt │ ├── stops1.txt │ ├── test.xml │ ├── wordforms.txt │ └── wordforms2.txt ├── test_404 │ ├── model.bin │ └── test.xml ├── test_405 │ ├── exc.txt │ ├── model.bin │ ├── stop.txt │ ├── test.xml │ ├── wordforms.txt │ └── wordforms1.txt ├── test_406 │ ├── data │ │ ├── index.0.spa │ │ ├── index.0.spd │ │ ├── index.0.spds │ │ ├── index.0.spe │ │ ├── index.0.sph │ │ ├── index.0.sphi │ │ ├── index.0.spi │ │ ├── index.0.spm │ │ ├── index.0.spp │ │ ├── index.0.spt │ │ ├── index.meta │ │ ├── index.ram │ │ ├── pq.meta │ │ └── rel320 │ │ │ ├── idx320.meta │ │ │ └── idx320.ram │ ├── model.bin │ └── test.xml ├── test_407 │ ├── model.bin │ └── test.xml ├── test_408 │ ├── model.bin │ ├── test.xml │ ├── words1.txt │ ├── words2.txt │ └── words3.txt ├── test_409 │ ├── ex1.txt │ ├── hw1.txt │ ├── hw3.txt │ ├── model.bin │ ├── stop1.txt │ ├── stop2.txt │ ├── test.xml │ ├── wf1.txt │ └── wf3.txt ├── test_410 │ ├── model.bin │ └── test.xml ├── test_411 │ ├── model.bin │ └── test.xml ├── test_412 │ ├── model.bin │ └── test.xml ├── test_413 │ ├── model.bin │ └── test.xml ├── test_414 │ ├── model.bin │ └── test.xml ├── test_415 │ ├── model.bin │ └── test.xml ├── test_416 │ ├── model.bin │ └── test.xml ├── test_417 │ ├── model.bin │ └── test.xml ├── test_418 │ ├── data1.xml │ ├── model.bin │ └── test.xml ├── test_430 │ ├── model.bin │ └── test.xml ├── test_431 │ ├── model.bin │ └── test.xml ├── test_432 │ ├── data1.csv │ ├── data1.xml │ ├── model.bin │ └── test.xml ├── test_433 │ ├── model.bin │ └── test.xml ├── test_434 │ ├── model.bin │ └── test.xml ├── test_435 │ ├── model.bin │ └── test.xml ├── test_436 │ ├── model.bin │ └── test.xml ├── test_437 │ ├── model.bin │ └── test.xml ├── test_438 │ ├── model.bin │ └── test.xml ├── test_439 │ ├── model.bin │ └── test.xml ├── test_440 │ ├── model.bin │ └── test.xml ├── test_441 │ ├── model.bin │ └── test.xml ├── test_442 │ ├── model.bin │ └── test.xml ├── test_443 │ ├── model.bin │ └── test.xml ├── test_444 │ ├── model.bin │ └── test.xml ├── test_445 │ ├── model.bin │ └── test.xml ├── test_446 │ ├── model.bin │ └── test.xml ├── test_447 │ ├── model.bin │ └── test.xml ├── test_448 │ ├── model.bin │ └── test.xml ├── test_449 │ ├── model.bin │ └── test.xml ├── test_450 │ ├── model.bin │ └── test.xml ├── test_451 │ ├── model.bin │ └── test.xml ├── test_452 │ ├── model.bin │ └── test.xml ├── test_453 │ ├── model.bin │ └── test.xml ├── test_454 │ ├── model.bin │ └── test.xml ├── test_455 │ ├── model.bin │ └── test.xml ├── test_456 │ ├── model.bin │ └── test.xml ├── test_457 │ ├── model.bin │ └── test.xml ├── test_458 │ ├── model.bin │ └── test.xml ├── test_459 │ ├── model.bin │ └── test.xml ├── test_460 │ ├── model.bin │ └── test.xml ├── test_461 │ ├── model.bin │ └── test.xml ├── test_462 │ ├── model.bin │ └── test.xml ├── test_463 │ ├── model.bin │ └── test.xml ├── test_464 │ ├── exceptions.txt │ ├── model.bin │ ├── stops.txt │ ├── test.xml │ └── wordforms.txt ├── test_465 │ ├── model.bin │ └── test.xml ├── test_466 │ ├── model.bin │ └── test.xml ├── test_467 │ ├── model.bin │ └── test.xml ├── test_468 │ ├── model.bin │ └── test.xml ├── test_469 │ ├── model.bin │ └── test.xml ├── test_470 │ ├── bulk339_1.gz │ ├── model.bin │ ├── replace339_1.gz │ ├── search339_1.gz │ └── test.xml ├── test_471 │ ├── global.idf │ ├── global_idf_src.txt │ ├── model.bin │ └── test.xml ├── test_472 │ ├── global.idf │ ├── global2.idf │ ├── global_idf2_src.txt │ ├── global_idf_src.txt │ ├── model.bin │ └── test.xml ├── test_473 │ ├── model.bin │ └── test.xml ├── test_474 │ ├── model.bin │ └── test.xml ├── test_475 │ ├── model.bin │ └── test.xml ├── test_columnar.conf ├── test_icu.conf ├── test_jieba.conf ├── test_odbc.conf ├── test_re.conf ├── ubertest.php ├── ubertest.php.in ├── valgrind.supp └── wordforms.txt ├── translator.config.yaml ├── translator.models.yaml ├── translator.role.tpl └── valgrind /.clt/checkers/contains: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/.clt/checkers/contains -------------------------------------------------------------------------------- /.clt/checkers/ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/.clt/checkers/ignore -------------------------------------------------------------------------------- /.clt/patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/.clt/patterns -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ["https://www.paypal.me/manticoresearch"] 2 | -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/.gitmodules -------------------------------------------------------------------------------- /.noindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/.noindex -------------------------------------------------------------------------------- /116.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/116.conf -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- 1 | Please refer to https://manual.manticoresearch.com/Installation 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/README.md -------------------------------------------------------------------------------- /TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/TESTING.md -------------------------------------------------------------------------------- /api/lgpl-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/api/lgpl-3.0.txt -------------------------------------------------------------------------------- /api/ruby/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/api/ruby/README.rdoc -------------------------------------------------------------------------------- /api/ruby/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/api/ruby/Rakefile -------------------------------------------------------------------------------- /api/ruby/init.rb: -------------------------------------------------------------------------------- 1 | require File.dirname(__FILE__) + '/lib/sphinx' 2 | -------------------------------------------------------------------------------- /api/ruby/install.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/api/ruby/install.rb -------------------------------------------------------------------------------- /api/ruby/lib/sphinx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/api/ruby/lib/sphinx.rb -------------------------------------------------------------------------------- /api/ruby/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/api/ruby/test.rb -------------------------------------------------------------------------------- /api/sphinxapi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/api/sphinxapi.php -------------------------------------------------------------------------------- /cmake/CommonInfo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/cmake/CommonInfo.cmake -------------------------------------------------------------------------------- /cmake/FindMysql.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/cmake/FindMysql.cmake -------------------------------------------------------------------------------- /cmake/FindZSTD.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/cmake/FindZSTD.cmake -------------------------------------------------------------------------------- /cmake/Findre2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/cmake/Findre2.cmake -------------------------------------------------------------------------------- /cmake/GetCCTZ.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/cmake/GetCCTZ.cmake -------------------------------------------------------------------------------- /cmake/GetGALERA.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/cmake/GetGALERA.cmake -------------------------------------------------------------------------------- /cmake/GetICU.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/cmake/GetICU.cmake -------------------------------------------------------------------------------- /cmake/GetJIEBA.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/cmake/GetJIEBA.cmake -------------------------------------------------------------------------------- /cmake/GetNLJSON.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/cmake/GetNLJSON.cmake -------------------------------------------------------------------------------- /cmake/GetRBitmap.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/cmake/GetRBitmap.cmake -------------------------------------------------------------------------------- /cmake/GetRE2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/cmake/GetRE2.cmake -------------------------------------------------------------------------------- /cmake/GetSSL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/cmake/GetSSL.cmake -------------------------------------------------------------------------------- /cmake/GetSTEMMER.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/cmake/GetSTEMMER.cmake -------------------------------------------------------------------------------- /cmake/GetUniAlgo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/cmake/GetUniAlgo.cmake -------------------------------------------------------------------------------- /cmake/GetVCPKG.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/cmake/GetVCPKG.cmake -------------------------------------------------------------------------------- /cmake/GetxxHash.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/cmake/GetxxHash.cmake -------------------------------------------------------------------------------- /cmake/banner.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/cmake/banner.cmake -------------------------------------------------------------------------------- /cmake/galera-copy-package.sh.in: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cp -t @MANTICORE_BINARY_DIR@ *deb *.rpm *.tar.gz || true -------------------------------------------------------------------------------- /cmake/genheader.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/cmake/genheader.cmake -------------------------------------------------------------------------------- /cmake/helpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/cmake/helpers.cmake -------------------------------------------------------------------------------- /cmake/mybison.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/cmake/mybison.cmake -------------------------------------------------------------------------------- /cmake/printers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/cmake/printers.cmake -------------------------------------------------------------------------------- /cmake/split.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/cmake/split.cmake -------------------------------------------------------------------------------- /columnar_src.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/columnar_src.txt -------------------------------------------------------------------------------- /compare_manuals.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/compare_manuals.sh -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/configure -------------------------------------------------------------------------------- /contrib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/contrib/README -------------------------------------------------------------------------------- /deps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/deps.txt -------------------------------------------------------------------------------- /dist/70-manticore.conf: -------------------------------------------------------------------------------- 1 | vm.max_map_count=262144 2 | -------------------------------------------------------------------------------- /dist/build_dockers/retired/aarch64/bionic/distr.txt: -------------------------------------------------------------------------------- 1 | distr=$(basename $(pwd)) -------------------------------------------------------------------------------- /dist/build_dockers/retired/aarch64/bullseye/distr.txt: -------------------------------------------------------------------------------- 1 | distr=$(basename $(pwd)) -------------------------------------------------------------------------------- /dist/build_dockers/retired/aarch64/buster/distr.txt: -------------------------------------------------------------------------------- 1 | distr=$(basename $(pwd)) -------------------------------------------------------------------------------- /dist/build_dockers/retired/aarch64/centos7/distr.txt: -------------------------------------------------------------------------------- 1 | distr=$(basename $(pwd)) -------------------------------------------------------------------------------- /dist/build_dockers/retired/aarch64/centos8/distr.txt: -------------------------------------------------------------------------------- 1 | distr=$(basename $(pwd)) -------------------------------------------------------------------------------- /dist/build_dockers/retired/aarch64/focal/distr.txt: -------------------------------------------------------------------------------- 1 | distr=$(basename $(pwd)) -------------------------------------------------------------------------------- /dist/build_dockers/retired/aarch64/stretch/distr.txt: -------------------------------------------------------------------------------- 1 | distr=$(basename $(pwd)) -------------------------------------------------------------------------------- /dist/build_dockers/retired/aarch64/xenial/distr.txt: -------------------------------------------------------------------------------- 1 | distr=$(basename $(pwd)) -------------------------------------------------------------------------------- /dist/build_dockers/retired/bionic/distr.txt: -------------------------------------------------------------------------------- 1 | distr=$(basename $(pwd)) -------------------------------------------------------------------------------- /dist/build_dockers/retired/bullseye/distr.txt: -------------------------------------------------------------------------------- 1 | distr=$(basename $(pwd)) -------------------------------------------------------------------------------- /dist/build_dockers/retired/buster/distr.txt: -------------------------------------------------------------------------------- 1 | distr=$(basename $(pwd)) -------------------------------------------------------------------------------- /dist/build_dockers/retired/centos7/distr.txt: -------------------------------------------------------------------------------- 1 | distr=$(basename $(pwd)) -------------------------------------------------------------------------------- /dist/build_dockers/retired/centos8/distr.txt: -------------------------------------------------------------------------------- 1 | distr=$(basename $(pwd)) -------------------------------------------------------------------------------- /dist/build_dockers/retired/cross/sysroots/build_xenial.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | export distr=xenial 4 | . ubuntu.sh -------------------------------------------------------------------------------- /dist/build_dockers/retired/focal/distr.txt: -------------------------------------------------------------------------------- 1 | distr=$(basename $(pwd)) -------------------------------------------------------------------------------- /dist/build_dockers/retired/jammy/distr.txt: -------------------------------------------------------------------------------- 1 | distr=$(basename $(pwd)) -------------------------------------------------------------------------------- /dist/build_dockers/retired/stretch/distr.txt: -------------------------------------------------------------------------------- 1 | distr=$(basename $(pwd)) -------------------------------------------------------------------------------- /dist/build_dockers/retired/xenial/distr.txt: -------------------------------------------------------------------------------- 1 | distr=$(basename $(pwd)) -------------------------------------------------------------------------------- /dist/deb/conffiles-tools.in: -------------------------------------------------------------------------------- 1 | @CMAKE_INSTALL_FULL_SYSCONFDIR@/default/manticore-indexer_global 2 | -------------------------------------------------------------------------------- /dist/nsis-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/dist/nsis-release.yml -------------------------------------------------------------------------------- /doc/binary-logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/doc/binary-logging.md -------------------------------------------------------------------------------- /doc/indexer.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/doc/indexer.1 -------------------------------------------------------------------------------- /doc/indextool.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/doc/indextool.1 -------------------------------------------------------------------------------- /doc/md2man.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/doc/md2man.bash -------------------------------------------------------------------------------- /doc/searchd.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/doc/searchd.1 -------------------------------------------------------------------------------- /example.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/example.sql -------------------------------------------------------------------------------- /galera_packaging/tmp: -------------------------------------------------------------------------------- 1 | tmp file to force CI. 2 | -------------------------------------------------------------------------------- /libicu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/libicu/CMakeLists.txt -------------------------------------------------------------------------------- /libre2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/libre2/CMakeLists.txt -------------------------------------------------------------------------------- /libre2/libre2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/libre2/libre2.patch -------------------------------------------------------------------------------- /libstemmer_c/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/libstemmer_c/README -------------------------------------------------------------------------------- /manticore.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/manticore.conf.in -------------------------------------------------------------------------------- /manual/chinese/Functions.md: -------------------------------------------------------------------------------- 1 | # 函数 2 | 3 | 4 | -------------------------------------------------------------------------------- /manual/chinese/latest_release_version: -------------------------------------------------------------------------------- 1 | 10.1.0 2 | -------------------------------------------------------------------------------- /manual/english/Functions.md: -------------------------------------------------------------------------------- 1 | # Functions 2 | 3 | 4 | -------------------------------------------------------------------------------- /manual/english/latest_release_version: -------------------------------------------------------------------------------- 1 | 13.11.0 2 | -------------------------------------------------------------------------------- /manual/latest_release_version: -------------------------------------------------------------------------------- 1 | 15.1.0 2 | -------------------------------------------------------------------------------- /manual/russian/Functions.md: -------------------------------------------------------------------------------- 1 | # Функции 2 | 3 | 4 | -------------------------------------------------------------------------------- /manual/russian/latest_release_version: -------------------------------------------------------------------------------- 1 | 10.1.0 2 | -------------------------------------------------------------------------------- /memcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/memcheck.sh -------------------------------------------------------------------------------- /memdocker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/memdocker.sh -------------------------------------------------------------------------------- /misc/ctest/memcheck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/ctest/memcheck.md -------------------------------------------------------------------------------- /misc/http-log-to-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/http-log-to-test -------------------------------------------------------------------------------- /misc/manticore.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/manticore.natvis -------------------------------------------------------------------------------- /misc/manticore_lldb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/manticore_lldb.py -------------------------------------------------------------------------------- /misc/raminfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/raminfo.py -------------------------------------------------------------------------------- /misc/resolve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/resolve.py -------------------------------------------------------------------------------- /misc/stopwords/af: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/af -------------------------------------------------------------------------------- /misc/stopwords/ar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/ar -------------------------------------------------------------------------------- /misc/stopwords/bg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/bg -------------------------------------------------------------------------------- /misc/stopwords/bn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/bn -------------------------------------------------------------------------------- /misc/stopwords/ca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/ca -------------------------------------------------------------------------------- /misc/stopwords/ckb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/ckb -------------------------------------------------------------------------------- /misc/stopwords/cz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/cz -------------------------------------------------------------------------------- /misc/stopwords/da: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/da -------------------------------------------------------------------------------- /misc/stopwords/de: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/de -------------------------------------------------------------------------------- /misc/stopwords/el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/el -------------------------------------------------------------------------------- /misc/stopwords/en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/en -------------------------------------------------------------------------------- /misc/stopwords/eo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/eo -------------------------------------------------------------------------------- /misc/stopwords/es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/es -------------------------------------------------------------------------------- /misc/stopwords/et: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/et -------------------------------------------------------------------------------- /misc/stopwords/eu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/eu -------------------------------------------------------------------------------- /misc/stopwords/fa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/fa -------------------------------------------------------------------------------- /misc/stopwords/fi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/fi -------------------------------------------------------------------------------- /misc/stopwords/fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/fr -------------------------------------------------------------------------------- /misc/stopwords/ga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/ga -------------------------------------------------------------------------------- /misc/stopwords/gl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/gl -------------------------------------------------------------------------------- /misc/stopwords/he: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/he -------------------------------------------------------------------------------- /misc/stopwords/hi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/hi -------------------------------------------------------------------------------- /misc/stopwords/hr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/hr -------------------------------------------------------------------------------- /misc/stopwords/hu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/hu -------------------------------------------------------------------------------- /misc/stopwords/hy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/hy -------------------------------------------------------------------------------- /misc/stopwords/id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/id -------------------------------------------------------------------------------- /misc/stopwords/it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/it -------------------------------------------------------------------------------- /misc/stopwords/ja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/ja -------------------------------------------------------------------------------- /misc/stopwords/ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/ko -------------------------------------------------------------------------------- /misc/stopwords/la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/la -------------------------------------------------------------------------------- /misc/stopwords/lt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/lt -------------------------------------------------------------------------------- /misc/stopwords/lv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/lv -------------------------------------------------------------------------------- /misc/stopwords/mr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/mr -------------------------------------------------------------------------------- /misc/stopwords/nl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/nl -------------------------------------------------------------------------------- /misc/stopwords/no: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/no -------------------------------------------------------------------------------- /misc/stopwords/pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/pl -------------------------------------------------------------------------------- /misc/stopwords/pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/pt -------------------------------------------------------------------------------- /misc/stopwords/ro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/ro -------------------------------------------------------------------------------- /misc/stopwords/ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/ru -------------------------------------------------------------------------------- /misc/stopwords/sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/sk -------------------------------------------------------------------------------- /misc/stopwords/sl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/sl -------------------------------------------------------------------------------- /misc/stopwords/so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/so -------------------------------------------------------------------------------- /misc/stopwords/st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/st -------------------------------------------------------------------------------- /misc/stopwords/sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/sv -------------------------------------------------------------------------------- /misc/stopwords/sw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/sw -------------------------------------------------------------------------------- /misc/stopwords/th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/th -------------------------------------------------------------------------------- /misc/stopwords/tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/tr -------------------------------------------------------------------------------- /misc/stopwords/yo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/yo -------------------------------------------------------------------------------- /misc/stopwords/zh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/zh -------------------------------------------------------------------------------- /misc/stopwords/zu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/stopwords/zu -------------------------------------------------------------------------------- /misc/suggest/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/suggest/README -------------------------------------------------------------------------------- /misc/wordbreak.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/misc/wordbreak.pl -------------------------------------------------------------------------------- /mysqlse/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/mysqlse/CMakeLists.txt -------------------------------------------------------------------------------- /mysqlse/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/mysqlse/INSTALL -------------------------------------------------------------------------------- /mysqlse/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/mysqlse/Makefile.am -------------------------------------------------------------------------------- /mysqlse/gen_data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/mysqlse/gen_data.php -------------------------------------------------------------------------------- /mysqlse/ha_sphinx.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/mysqlse/ha_sphinx.cc -------------------------------------------------------------------------------- /mysqlse/ha_sphinx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/mysqlse/ha_sphinx.h -------------------------------------------------------------------------------- /mysqlse/make-patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/mysqlse/make-patch.sh -------------------------------------------------------------------------------- /mysqlse/plug.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/mysqlse/plug.in -------------------------------------------------------------------------------- /searchd.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/searchd.log -------------------------------------------------------------------------------- /smoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/smoke.sh -------------------------------------------------------------------------------- /smokeci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/smokeci.sh -------------------------------------------------------------------------------- /sphinxrev.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/sphinxrev.cmake -------------------------------------------------------------------------------- /sphinxrevcheck.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/sphinxrevcheck.cmake -------------------------------------------------------------------------------- /src/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/.clang-format -------------------------------------------------------------------------------- /src/.gitattributes: -------------------------------------------------------------------------------- 1 | sphinxversion.h.in export-subst -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/accumulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/accumulator.cpp -------------------------------------------------------------------------------- /src/accumulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/accumulator.h -------------------------------------------------------------------------------- /src/aggregate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/aggregate.cpp -------------------------------------------------------------------------------- /src/aggregate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/aggregate.h -------------------------------------------------------------------------------- /src/aggrexpr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/aggrexpr.cpp -------------------------------------------------------------------------------- /src/aggrexpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/aggrexpr.h -------------------------------------------------------------------------------- /src/attribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/attribute.cpp -------------------------------------------------------------------------------- /src/attribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/attribute.h -------------------------------------------------------------------------------- /src/attrindex_merge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/attrindex_merge.h -------------------------------------------------------------------------------- /src/binlog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/binlog.cpp -------------------------------------------------------------------------------- /src/binlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/binlog.h -------------------------------------------------------------------------------- /src/binlog_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/binlog_defs.h -------------------------------------------------------------------------------- /src/charsets/cjk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/charsets/cjk.txt -------------------------------------------------------------------------------- /src/charsets/cont.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/charsets/cont.txt -------------------------------------------------------------------------------- /src/charsets/thai.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/charsets/thai.txt -------------------------------------------------------------------------------- /src/chunksearchctx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/chunksearchctx.cpp -------------------------------------------------------------------------------- /src/chunksearchctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/chunksearchctx.h -------------------------------------------------------------------------------- /src/cjkpreprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/cjkpreprocessor.h -------------------------------------------------------------------------------- /src/client_session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/client_session.h -------------------------------------------------------------------------------- /src/client_task_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/client_task_info.h -------------------------------------------------------------------------------- /src/collation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/collation.cpp -------------------------------------------------------------------------------- /src/collation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/collation.h -------------------------------------------------------------------------------- /src/columnarexpr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/columnarexpr.cpp -------------------------------------------------------------------------------- /src/columnarexpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/columnarexpr.h -------------------------------------------------------------------------------- /src/columnarfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/columnarfilter.cpp -------------------------------------------------------------------------------- /src/columnarfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/columnarfilter.h -------------------------------------------------------------------------------- /src/columnargrouper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/columnargrouper.h -------------------------------------------------------------------------------- /src/columnarlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/columnarlib.cpp -------------------------------------------------------------------------------- /src/columnarlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/columnarlib.h -------------------------------------------------------------------------------- /src/columnarmisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/columnarmisc.cpp -------------------------------------------------------------------------------- /src/columnarmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/columnarmisc.h -------------------------------------------------------------------------------- /src/columnarrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/columnarrt.cpp -------------------------------------------------------------------------------- /src/columnarrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/columnarrt.h -------------------------------------------------------------------------------- /src/columnarsort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/columnarsort.cpp -------------------------------------------------------------------------------- /src/columnarsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/columnarsort.h -------------------------------------------------------------------------------- /src/compressed_http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/compressed_http.h -------------------------------------------------------------------------------- /src/config_reloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/config_reloader.h -------------------------------------------------------------------------------- /src/conversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/conversion.cpp -------------------------------------------------------------------------------- /src/conversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/conversion.h -------------------------------------------------------------------------------- /src/coro_stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/coro_stack.cpp -------------------------------------------------------------------------------- /src/coro_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/coro_stack.h -------------------------------------------------------------------------------- /src/coro_waker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/coro_waker.h -------------------------------------------------------------------------------- /src/coroutine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/coroutine.cpp -------------------------------------------------------------------------------- /src/coroutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/coroutine.h -------------------------------------------------------------------------------- /src/costestimate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/costestimate.cpp -------------------------------------------------------------------------------- /src/costestimate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/costestimate.h -------------------------------------------------------------------------------- /src/daemon/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/daemon/logger.h -------------------------------------------------------------------------------- /src/datareader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/datareader.cpp -------------------------------------------------------------------------------- /src/datareader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/datareader.h -------------------------------------------------------------------------------- /src/datetime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/datetime.cpp -------------------------------------------------------------------------------- /src/datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/datetime.h -------------------------------------------------------------------------------- /src/ddl.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/ddl.l -------------------------------------------------------------------------------- /src/ddl.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/ddl.y -------------------------------------------------------------------------------- /src/debug_cmds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/debug_cmds.cpp -------------------------------------------------------------------------------- /src/debug_cmds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/debug_cmds.h -------------------------------------------------------------------------------- /src/detail/expmeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/detail/expmeter.h -------------------------------------------------------------------------------- /src/detail/indexlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/detail/indexlink.h -------------------------------------------------------------------------------- /src/dict/bin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/dict/bin.cpp -------------------------------------------------------------------------------- /src/dict/bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/dict/bin.h -------------------------------------------------------------------------------- /src/dict/crc_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/dict/crc_engine.h -------------------------------------------------------------------------------- /src/dict/dict_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/dict/dict_base.cpp -------------------------------------------------------------------------------- /src/dict/dict_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/dict/dict_base.h -------------------------------------------------------------------------------- /src/dict/dict_crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/dict/dict_crc.cpp -------------------------------------------------------------------------------- /src/dict/dict_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/dict/dict_crc.h -------------------------------------------------------------------------------- /src/dict/dict_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/dict/dict_entry.h -------------------------------------------------------------------------------- /src/dict/dict_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/dict/dict_proxy.h -------------------------------------------------------------------------------- /src/dict/dict_star.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/dict/dict_star.cpp -------------------------------------------------------------------------------- /src/dict/word_forms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/dict/word_forms.h -------------------------------------------------------------------------------- /src/digest_sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/digest_sha1.cpp -------------------------------------------------------------------------------- /src/digest_sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/digest_sha1.h -------------------------------------------------------------------------------- /src/distinct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/distinct.cpp -------------------------------------------------------------------------------- /src/distinct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/distinct.h -------------------------------------------------------------------------------- /src/docidlookup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/docidlookup.cpp -------------------------------------------------------------------------------- /src/docidlookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/docidlookup.h -------------------------------------------------------------------------------- /src/docs_collector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/docs_collector.cpp -------------------------------------------------------------------------------- /src/docs_collector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/docs_collector.h -------------------------------------------------------------------------------- /src/docstore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/docstore.cpp -------------------------------------------------------------------------------- /src/docstore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/docstore.h -------------------------------------------------------------------------------- /src/dynamic_idx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/dynamic_idx.cpp -------------------------------------------------------------------------------- /src/dynamic_idx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/dynamic_idx.h -------------------------------------------------------------------------------- /src/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/event.h -------------------------------------------------------------------------------- /src/exprdatetime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/exprdatetime.cpp -------------------------------------------------------------------------------- /src/exprdatetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/exprdatetime.h -------------------------------------------------------------------------------- /src/exprdocstore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/exprdocstore.cpp -------------------------------------------------------------------------------- /src/exprdocstore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/exprdocstore.h -------------------------------------------------------------------------------- /src/exprgeodist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/exprgeodist.cpp -------------------------------------------------------------------------------- /src/exprgeodist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/exprgeodist.h -------------------------------------------------------------------------------- /src/exprremap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/exprremap.cpp -------------------------------------------------------------------------------- /src/exprremap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/exprremap.h -------------------------------------------------------------------------------- /src/exprtraits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/exprtraits.cpp -------------------------------------------------------------------------------- /src/exprtraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/exprtraits.h -------------------------------------------------------------------------------- /src/fileio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/fileio.cpp -------------------------------------------------------------------------------- /src/fileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/fileio.h -------------------------------------------------------------------------------- /src/fileutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/fileutils.cpp -------------------------------------------------------------------------------- /src/fileutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/fileutils.h -------------------------------------------------------------------------------- /src/frontendschema.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/frontendschema.cpp -------------------------------------------------------------------------------- /src/frontendschema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/frontendschema.h -------------------------------------------------------------------------------- /src/fuzzer/dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/fuzzer/dict.txt -------------------------------------------------------------------------------- /src/fuzzer/fuzzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/fuzzer/fuzzer.cpp -------------------------------------------------------------------------------- /src/gbenches/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/gbenches/json.cpp -------------------------------------------------------------------------------- /src/gbenches/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/gbenches/misc.cpp -------------------------------------------------------------------------------- /src/gbenches/text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/gbenches/text.cpp -------------------------------------------------------------------------------- /src/geodist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/geodist.cpp -------------------------------------------------------------------------------- /src/geodist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/geodist.h -------------------------------------------------------------------------------- /src/global_idf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/global_idf.cpp -------------------------------------------------------------------------------- /src/global_idf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/global_idf.h -------------------------------------------------------------------------------- /src/grouper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/grouper.cpp -------------------------------------------------------------------------------- /src/grouper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/grouper.h -------------------------------------------------------------------------------- /src/hazard_pointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/hazard_pointer.cpp -------------------------------------------------------------------------------- /src/hazard_pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/hazard_pointer.h -------------------------------------------------------------------------------- /src/histogram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/histogram.cpp -------------------------------------------------------------------------------- /src/histogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/histogram.h -------------------------------------------------------------------------------- /src/http/http_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/http/http_parser.c -------------------------------------------------------------------------------- /src/http/http_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/http/http_parser.h -------------------------------------------------------------------------------- /src/hyperloglog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/hyperloglog.cpp -------------------------------------------------------------------------------- /src/hyperloglog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/hyperloglog.h -------------------------------------------------------------------------------- /src/icu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/icu.cpp -------------------------------------------------------------------------------- /src/icu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/icu.h -------------------------------------------------------------------------------- /src/index_rotator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/index_rotator.cpp -------------------------------------------------------------------------------- /src/index_rotator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/index_rotator.h -------------------------------------------------------------------------------- /src/indexcheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/indexcheck.cpp -------------------------------------------------------------------------------- /src/indexcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/indexcheck.h -------------------------------------------------------------------------------- /src/indexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/indexer.cpp -------------------------------------------------------------------------------- /src/indexfilebase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/indexfilebase.cpp -------------------------------------------------------------------------------- /src/indexfilebase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/indexfilebase.h -------------------------------------------------------------------------------- /src/indexfiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/indexfiles.cpp -------------------------------------------------------------------------------- /src/indexfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/indexfiles.h -------------------------------------------------------------------------------- /src/indexformat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/indexformat.cpp -------------------------------------------------------------------------------- /src/indexformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/indexformat.h -------------------------------------------------------------------------------- /src/indexsettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/indexsettings.cpp -------------------------------------------------------------------------------- /src/indexsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/indexsettings.h -------------------------------------------------------------------------------- /src/indextool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/indextool.cpp -------------------------------------------------------------------------------- /src/jieba.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/jieba.cpp -------------------------------------------------------------------------------- /src/jieba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/jieba.h -------------------------------------------------------------------------------- /src/joinsorter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/joinsorter.cpp -------------------------------------------------------------------------------- /src/joinsorter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/joinsorter.h -------------------------------------------------------------------------------- /src/json/cJSON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/json/cJSON.c -------------------------------------------------------------------------------- /src/json/cJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/json/cJSON.h -------------------------------------------------------------------------------- /src/jsonqueryfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/jsonqueryfilter.h -------------------------------------------------------------------------------- /src/jsonsi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/jsonsi.cpp -------------------------------------------------------------------------------- /src/jsonsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/jsonsi.h -------------------------------------------------------------------------------- /src/killlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/killlist.cpp -------------------------------------------------------------------------------- /src/killlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/killlist.h -------------------------------------------------------------------------------- /src/knnlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/knnlib.cpp -------------------------------------------------------------------------------- /src/knnlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/knnlib.h -------------------------------------------------------------------------------- /src/knnmisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/knnmisc.cpp -------------------------------------------------------------------------------- /src/knnmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/knnmisc.h -------------------------------------------------------------------------------- /src/libutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/libutils.cpp -------------------------------------------------------------------------------- /src/libutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/libutils.h -------------------------------------------------------------------------------- /src/literal.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/literal.h.in -------------------------------------------------------------------------------- /src/loop_profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/loop_profiler.h -------------------------------------------------------------------------------- /src/lz4/lz4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/lz4/lz4.c -------------------------------------------------------------------------------- /src/lz4/lz4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/lz4/lz4.h -------------------------------------------------------------------------------- /src/lz4/lz4hc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/lz4/lz4hc.c -------------------------------------------------------------------------------- /src/lz4/lz4hc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/lz4/lz4hc.h -------------------------------------------------------------------------------- /src/match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/match.h -------------------------------------------------------------------------------- /src/match_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/match_impl.h -------------------------------------------------------------------------------- /src/memio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/memio.cpp -------------------------------------------------------------------------------- /src/memio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/memio.h -------------------------------------------------------------------------------- /src/memio_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/memio_impl.h -------------------------------------------------------------------------------- /src/mini_timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/mini_timer.cpp -------------------------------------------------------------------------------- /src/mini_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/mini_timer.h -------------------------------------------------------------------------------- /src/netfetch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/netfetch.cpp -------------------------------------------------------------------------------- /src/netfetch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/netfetch.h -------------------------------------------------------------------------------- /src/netpoll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/netpoll.cpp -------------------------------------------------------------------------------- /src/netpoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/netpoll.h -------------------------------------------------------------------------------- /src/netreceive_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/netreceive_api.cpp -------------------------------------------------------------------------------- /src/netreceive_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/netreceive_api.h -------------------------------------------------------------------------------- /src/netreceive_http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/netreceive_http.h -------------------------------------------------------------------------------- /src/netreceive_ql.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/netreceive_ql.cpp -------------------------------------------------------------------------------- /src/netreceive_ql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/netreceive_ql.h -------------------------------------------------------------------------------- /src/pollable_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/pollable_event.cpp -------------------------------------------------------------------------------- /src/pollable_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/pollable_event.h -------------------------------------------------------------------------------- /src/pseudosharding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/pseudosharding.cpp -------------------------------------------------------------------------------- /src/pseudosharding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/pseudosharding.h -------------------------------------------------------------------------------- /src/query_status.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/query_status.cpp -------------------------------------------------------------------------------- /src/query_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/query_status.h -------------------------------------------------------------------------------- /src/querycontext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/querycontext.cpp -------------------------------------------------------------------------------- /src/querycontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/querycontext.h -------------------------------------------------------------------------------- /src/queryfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/queryfilter.cpp -------------------------------------------------------------------------------- /src/queryfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/queryfilter.h -------------------------------------------------------------------------------- /src/queryprofile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/queryprofile.cpp -------------------------------------------------------------------------------- /src/queryprofile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/queryprofile.h -------------------------------------------------------------------------------- /src/querystats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/querystats.cpp -------------------------------------------------------------------------------- /src/querystats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/querystats.h -------------------------------------------------------------------------------- /src/queuecreator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/queuecreator.cpp -------------------------------------------------------------------------------- /src/queuecreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/queuecreator.h -------------------------------------------------------------------------------- /src/reserved.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/reserved.py -------------------------------------------------------------------------------- /src/schema/helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/schema/helper.cpp -------------------------------------------------------------------------------- /src/schema/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/schema/helper.h -------------------------------------------------------------------------------- /src/schema/ischema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/schema/ischema.h -------------------------------------------------------------------------------- /src/schema/locator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/schema/locator.h -------------------------------------------------------------------------------- /src/schema/rset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/schema/rset.cpp -------------------------------------------------------------------------------- /src/schema/rset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/schema/rset.h -------------------------------------------------------------------------------- /src/schema/schema.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/schema/schema.cpp -------------------------------------------------------------------------------- /src/schema/schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/schema/schema.h -------------------------------------------------------------------------------- /src/schematransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/schematransform.h -------------------------------------------------------------------------------- /src/searchd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/searchd.cpp -------------------------------------------------------------------------------- /src/searchdaemon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/searchdaemon.cpp -------------------------------------------------------------------------------- /src/searchdaemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/searchdaemon.h -------------------------------------------------------------------------------- /src/searchdbuddy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/searchdbuddy.cpp -------------------------------------------------------------------------------- /src/searchdbuddy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/searchdbuddy.h -------------------------------------------------------------------------------- /src/searchdconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/searchdconfig.cpp -------------------------------------------------------------------------------- /src/searchdconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/searchdconfig.h -------------------------------------------------------------------------------- /src/searchdddl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/searchdddl.cpp -------------------------------------------------------------------------------- /src/searchdddl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/searchdddl.h -------------------------------------------------------------------------------- /src/searchdexpr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/searchdexpr.cpp -------------------------------------------------------------------------------- /src/searchdexpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/searchdexpr.h -------------------------------------------------------------------------------- /src/searchdfields.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/searchdfields.cpp -------------------------------------------------------------------------------- /src/searchdha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/searchdha.cpp -------------------------------------------------------------------------------- /src/searchdha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/searchdha.h -------------------------------------------------------------------------------- /src/searchdhttp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/searchdhttp.cpp -------------------------------------------------------------------------------- /src/searchdhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/searchdhttp.h -------------------------------------------------------------------------------- /src/searchdsql.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/searchdsql.cpp -------------------------------------------------------------------------------- /src/searchdsql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/searchdsql.h -------------------------------------------------------------------------------- /src/searchdssl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/searchdssl.cpp -------------------------------------------------------------------------------- /src/searchdssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/searchdssl.h -------------------------------------------------------------------------------- /src/searchdtask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/searchdtask.cpp -------------------------------------------------------------------------------- /src/searchdtask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/searchdtask.h -------------------------------------------------------------------------------- /src/searchnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/searchnode.cpp -------------------------------------------------------------------------------- /src/searchnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/searchnode.h -------------------------------------------------------------------------------- /src/secondaryindex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/secondaryindex.cpp -------------------------------------------------------------------------------- /src/secondaryindex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/secondaryindex.h -------------------------------------------------------------------------------- /src/secondarylib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/secondarylib.cpp -------------------------------------------------------------------------------- /src/secondarylib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/secondarylib.h -------------------------------------------------------------------------------- /src/skip_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/skip_cache.cpp -------------------------------------------------------------------------------- /src/skip_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/skip_cache.h -------------------------------------------------------------------------------- /src/snippetfunctor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/snippetfunctor.cpp -------------------------------------------------------------------------------- /src/snippetfunctor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/snippetfunctor.h -------------------------------------------------------------------------------- /src/snippetindex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/snippetindex.cpp -------------------------------------------------------------------------------- /src/snippetindex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/snippetindex.h -------------------------------------------------------------------------------- /src/snippetpassage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/snippetpassage.cpp -------------------------------------------------------------------------------- /src/snippetpassage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/snippetpassage.h -------------------------------------------------------------------------------- /src/snippetstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/snippetstream.cpp -------------------------------------------------------------------------------- /src/snippetstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/snippetstream.h -------------------------------------------------------------------------------- /src/sortcomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sortcomp.h -------------------------------------------------------------------------------- /src/sortergroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sortergroup.cpp -------------------------------------------------------------------------------- /src/sortergroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sortergroup.h -------------------------------------------------------------------------------- /src/sorterprecalc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sorterprecalc.cpp -------------------------------------------------------------------------------- /src/sorterprecalc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sorterprecalc.h -------------------------------------------------------------------------------- /src/sorterscroll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sorterscroll.cpp -------------------------------------------------------------------------------- /src/sorterscroll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sorterscroll.h -------------------------------------------------------------------------------- /src/sortertraits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sortertraits.cpp -------------------------------------------------------------------------------- /src/sortertraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sortertraits.h -------------------------------------------------------------------------------- /src/sortsetup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sortsetup.cpp -------------------------------------------------------------------------------- /src/sortsetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sortsetup.h -------------------------------------------------------------------------------- /src/spelldump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/spelldump.cpp -------------------------------------------------------------------------------- /src/sphinx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinx.cpp -------------------------------------------------------------------------------- /src/sphinx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinx.h -------------------------------------------------------------------------------- /src/sphinx_alter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinx_alter.cpp -------------------------------------------------------------------------------- /src/sphinx_alter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinx_alter.h -------------------------------------------------------------------------------- /src/sphinxaot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxaot.cpp -------------------------------------------------------------------------------- /src/sphinxdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxdefs.h -------------------------------------------------------------------------------- /src/sphinxexcerpt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxexcerpt.cpp -------------------------------------------------------------------------------- /src/sphinxexcerpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxexcerpt.h -------------------------------------------------------------------------------- /src/sphinxexpr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxexpr.cpp -------------------------------------------------------------------------------- /src/sphinxexpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxexpr.h -------------------------------------------------------------------------------- /src/sphinxexpr.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxexpr.l -------------------------------------------------------------------------------- /src/sphinxexpr.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxexpr.y -------------------------------------------------------------------------------- /src/sphinxfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxfilter.cpp -------------------------------------------------------------------------------- /src/sphinxfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxfilter.h -------------------------------------------------------------------------------- /src/sphinxint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxint.h -------------------------------------------------------------------------------- /src/sphinxjson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxjson.cpp -------------------------------------------------------------------------------- /src/sphinxjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxjson.h -------------------------------------------------------------------------------- /src/sphinxjson.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxjson.l -------------------------------------------------------------------------------- /src/sphinxjson.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxjson.y -------------------------------------------------------------------------------- /src/sphinxjsonquery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxjsonquery.h -------------------------------------------------------------------------------- /src/sphinxplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxplugin.cpp -------------------------------------------------------------------------------- /src/sphinxplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxplugin.h -------------------------------------------------------------------------------- /src/sphinxpq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxpq.cpp -------------------------------------------------------------------------------- /src/sphinxpq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxpq.h -------------------------------------------------------------------------------- /src/sphinxqcache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxqcache.cpp -------------------------------------------------------------------------------- /src/sphinxqcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxqcache.h -------------------------------------------------------------------------------- /src/sphinxql.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxql.l -------------------------------------------------------------------------------- /src/sphinxql.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxql.y -------------------------------------------------------------------------------- /src/sphinxql_debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxql_debug.cpp -------------------------------------------------------------------------------- /src/sphinxql_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxql_debug.h -------------------------------------------------------------------------------- /src/sphinxql_debug.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxql_debug.l -------------------------------------------------------------------------------- /src/sphinxql_debug.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxql_debug.y -------------------------------------------------------------------------------- /src/sphinxql_extra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxql_extra.cpp -------------------------------------------------------------------------------- /src/sphinxql_extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxql_extra.h -------------------------------------------------------------------------------- /src/sphinxql_extra.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxql_extra.l -------------------------------------------------------------------------------- /src/sphinxql_extra.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxql_extra.y -------------------------------------------------------------------------------- /src/sphinxql_second.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxql_second.h -------------------------------------------------------------------------------- /src/sphinxql_second.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxql_second.l -------------------------------------------------------------------------------- /src/sphinxql_second.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxql_second.y -------------------------------------------------------------------------------- /src/sphinxrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxrt.cpp -------------------------------------------------------------------------------- /src/sphinxrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxrt.h -------------------------------------------------------------------------------- /src/sphinxsearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxsearch.cpp -------------------------------------------------------------------------------- /src/sphinxsearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxsearch.h -------------------------------------------------------------------------------- /src/sphinxselect.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxselect.y -------------------------------------------------------------------------------- /src/sphinxsort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxsort.cpp -------------------------------------------------------------------------------- /src/sphinxsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxsort.h -------------------------------------------------------------------------------- /src/sphinxstd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxstd.h -------------------------------------------------------------------------------- /src/sphinxudf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxudf.c -------------------------------------------------------------------------------- /src/sphinxudf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxudf.h -------------------------------------------------------------------------------- /src/sphinxutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxutils.cpp -------------------------------------------------------------------------------- /src/sphinxutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxutils.h -------------------------------------------------------------------------------- /src/sphinxversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxversion.cpp -------------------------------------------------------------------------------- /src/sphinxversion.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/sphinxversion.h.in -------------------------------------------------------------------------------- /src/stackmock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/stackmock.cpp -------------------------------------------------------------------------------- /src/stackmock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/stackmock.h -------------------------------------------------------------------------------- /src/std/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/CMakeLists.txt -------------------------------------------------------------------------------- /src/std/accessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/accessor.h -------------------------------------------------------------------------------- /src/std/attrstub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/attrstub.h -------------------------------------------------------------------------------- /src/std/autoevent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/autoevent.cpp -------------------------------------------------------------------------------- /src/std/autoevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/autoevent.h -------------------------------------------------------------------------------- /src/std/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/base64.cpp -------------------------------------------------------------------------------- /src/std/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/base64.h -------------------------------------------------------------------------------- /src/std/binarysearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/binarysearch.h -------------------------------------------------------------------------------- /src/std/bitcount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/bitcount.h -------------------------------------------------------------------------------- /src/std/bitvec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/bitvec.h -------------------------------------------------------------------------------- /src/std/bitvec_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/bitvec_impl.h -------------------------------------------------------------------------------- /src/std/blobs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/blobs.h -------------------------------------------------------------------------------- /src/std/blobs_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/blobs_impl.h -------------------------------------------------------------------------------- /src/std/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/buffer.h -------------------------------------------------------------------------------- /src/std/buffer_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/buffer_impl.h -------------------------------------------------------------------------------- /src/std/checks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/checks.cpp -------------------------------------------------------------------------------- /src/std/checks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/checks.h -------------------------------------------------------------------------------- /src/std/comma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/comma.h -------------------------------------------------------------------------------- /src/std/comma_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/comma_impl.h -------------------------------------------------------------------------------- /src/std/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/comp.h -------------------------------------------------------------------------------- /src/std/comp_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/comp_impl.h -------------------------------------------------------------------------------- /src/std/crc32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/crc32.cpp -------------------------------------------------------------------------------- /src/std/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/crc32.h -------------------------------------------------------------------------------- /src/std/crc32_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/crc32_impl.h -------------------------------------------------------------------------------- /src/std/datamove.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/datamove.h -------------------------------------------------------------------------------- /src/std/deleter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/deleter.h -------------------------------------------------------------------------------- /src/std/deleter_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/deleter_impl.h -------------------------------------------------------------------------------- /src/std/env.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/env.cpp -------------------------------------------------------------------------------- /src/std/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/env.h -------------------------------------------------------------------------------- /src/std/fastlog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/fastlog.cpp -------------------------------------------------------------------------------- /src/std/fastlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/fastlog.h -------------------------------------------------------------------------------- /src/std/fastlog_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/fastlog_impl.h -------------------------------------------------------------------------------- /src/std/fatal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/fatal.cpp -------------------------------------------------------------------------------- /src/std/fatal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/fatal.h -------------------------------------------------------------------------------- /src/std/fixedvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/fixedvector.h -------------------------------------------------------------------------------- /src/std/fnv64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/fnv64.cpp -------------------------------------------------------------------------------- /src/std/fnv64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/fnv64.h -------------------------------------------------------------------------------- /src/std/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/format.h -------------------------------------------------------------------------------- /src/std/generics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/generics.h -------------------------------------------------------------------------------- /src/std/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/hash.h -------------------------------------------------------------------------------- /src/std/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/helpers.h -------------------------------------------------------------------------------- /src/std/helpers_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/helpers_impl.h -------------------------------------------------------------------------------- /src/std/ints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/ints.h -------------------------------------------------------------------------------- /src/std/iterations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/iterations.h -------------------------------------------------------------------------------- /src/std/largebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/largebuffer.h -------------------------------------------------------------------------------- /src/std/log2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/log2.h -------------------------------------------------------------------------------- /src/std/log2_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/log2_impl.h -------------------------------------------------------------------------------- /src/std/lrucache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/lrucache.h -------------------------------------------------------------------------------- /src/std/mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/mem.cpp -------------------------------------------------------------------------------- /src/std/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/mem.h -------------------------------------------------------------------------------- /src/std/mm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/mm.cpp -------------------------------------------------------------------------------- /src/std/mm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/mm.h -------------------------------------------------------------------------------- /src/std/mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/mutex.cpp -------------------------------------------------------------------------------- /src/std/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/mutex.h -------------------------------------------------------------------------------- /src/std/num_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/num_conv.h -------------------------------------------------------------------------------- /src/std/openhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/openhash.h -------------------------------------------------------------------------------- /src/std/orderedhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/orderedhash.h -------------------------------------------------------------------------------- /src/std/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/queue.h -------------------------------------------------------------------------------- /src/std/queue_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/queue_impl.h -------------------------------------------------------------------------------- /src/std/rand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/rand.cpp -------------------------------------------------------------------------------- /src/std/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/rand.h -------------------------------------------------------------------------------- /src/std/refptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/refptr.h -------------------------------------------------------------------------------- /src/std/relimit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/relimit.h -------------------------------------------------------------------------------- /src/std/relimit_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/relimit_impl.h -------------------------------------------------------------------------------- /src/std/rwlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/rwlock.cpp -------------------------------------------------------------------------------- /src/std/rwlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/rwlock.h -------------------------------------------------------------------------------- /src/std/rwlock_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/rwlock_impl.h -------------------------------------------------------------------------------- /src/std/scoped_comma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/scoped_comma.h -------------------------------------------------------------------------------- /src/std/scopedlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/scopedlock.h -------------------------------------------------------------------------------- /src/std/sharedptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/sharedptr.h -------------------------------------------------------------------------------- /src/std/smalloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/smalloc.cpp -------------------------------------------------------------------------------- /src/std/smalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/smalloc.h -------------------------------------------------------------------------------- /src/std/smalloc_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/smalloc_impl.h -------------------------------------------------------------------------------- /src/std/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/sort.h -------------------------------------------------------------------------------- /src/std/sort_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/sort_impl.h -------------------------------------------------------------------------------- /src/std/sphwarn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/sphwarn.cpp -------------------------------------------------------------------------------- /src/std/sphwarn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/sphwarn.h -------------------------------------------------------------------------------- /src/std/spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/spinlock.h -------------------------------------------------------------------------------- /src/std/storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/storage.h -------------------------------------------------------------------------------- /src/std/strerrorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/strerrorm.h -------------------------------------------------------------------------------- /src/std/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/string.cpp -------------------------------------------------------------------------------- /src/std/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/string.h -------------------------------------------------------------------------------- /src/std/string_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/string_impl.h -------------------------------------------------------------------------------- /src/std/stringhash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/stringhash.cpp -------------------------------------------------------------------------------- /src/std/stringhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/stringhash.h -------------------------------------------------------------------------------- /src/std/sys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/sys.cpp -------------------------------------------------------------------------------- /src/std/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/sys.h -------------------------------------------------------------------------------- /src/std/tdigest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/tdigest.cpp -------------------------------------------------------------------------------- /src/std/tdigest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/tdigest.h -------------------------------------------------------------------------------- /src/std/threadrole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/threadrole.h -------------------------------------------------------------------------------- /src/std/timers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/timers.cpp -------------------------------------------------------------------------------- /src/std/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/timers.h -------------------------------------------------------------------------------- /src/std/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/type_traits.h -------------------------------------------------------------------------------- /src/std/uniq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/uniq.h -------------------------------------------------------------------------------- /src/std/uniq_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/uniq_impl.h -------------------------------------------------------------------------------- /src/std/unique_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/unique_lock.h -------------------------------------------------------------------------------- /src/std/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/variant.h -------------------------------------------------------------------------------- /src/std/variant_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/variant_impl.h -------------------------------------------------------------------------------- /src/std/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/vector.h -------------------------------------------------------------------------------- /src/std/vector_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/vector_impl.h -------------------------------------------------------------------------------- /src/std/vectraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/vectraits.h -------------------------------------------------------------------------------- /src/std/widest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/widest.h -------------------------------------------------------------------------------- /src/std/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/zip.h -------------------------------------------------------------------------------- /src/std/zip_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/std/zip_impl.h -------------------------------------------------------------------------------- /src/task_dispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/task_dispatcher.h -------------------------------------------------------------------------------- /src/task_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/task_info.cpp -------------------------------------------------------------------------------- /src/task_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/task_info.h -------------------------------------------------------------------------------- /src/taskflushattrs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/taskflushattrs.cpp -------------------------------------------------------------------------------- /src/taskflushattrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/taskflushattrs.h -------------------------------------------------------------------------------- /src/taskflushbinlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/taskflushbinlog.h -------------------------------------------------------------------------------- /src/taskflushmutable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/taskflushmutable.h -------------------------------------------------------------------------------- /src/taskglobalidf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/taskglobalidf.cpp -------------------------------------------------------------------------------- /src/taskglobalidf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/taskglobalidf.h -------------------------------------------------------------------------------- /src/taskmalloctrim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/taskmalloctrim.cpp -------------------------------------------------------------------------------- /src/taskmalloctrim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/taskmalloctrim.h -------------------------------------------------------------------------------- /src/taskping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/taskping.cpp -------------------------------------------------------------------------------- /src/taskping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/taskping.h -------------------------------------------------------------------------------- /src/taskpreread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/taskpreread.cpp -------------------------------------------------------------------------------- /src/taskpreread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/taskpreread.h -------------------------------------------------------------------------------- /src/tasksavestate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/tasksavestate.cpp -------------------------------------------------------------------------------- /src/tasksavestate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/tasksavestate.h -------------------------------------------------------------------------------- /src/testrt.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/testrt.conf.in -------------------------------------------------------------------------------- /src/testrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/testrt.cpp -------------------------------------------------------------------------------- /src/tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/tests.cpp -------------------------------------------------------------------------------- /src/threadutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/threadutils.cpp -------------------------------------------------------------------------------- /src/threadutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/threadutils.h -------------------------------------------------------------------------------- /src/threadutils_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/threadutils_impl.h -------------------------------------------------------------------------------- /src/timeout_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/timeout_queue.cpp -------------------------------------------------------------------------------- /src/timeout_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/timeout_queue.h -------------------------------------------------------------------------------- /src/tracer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/tracer.cpp -------------------------------------------------------------------------------- /src/tracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/tracer.h -------------------------------------------------------------------------------- /src/udfexample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/udfexample.c -------------------------------------------------------------------------------- /src/wordbreaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/src/wordbreaker.cpp -------------------------------------------------------------------------------- /stack.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/.gitattributes -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/bench.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/bench.php -------------------------------------------------------------------------------- /test/bench/filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/bench/filter.xml -------------------------------------------------------------------------------- /test/bench/filter3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/bench/filter3.xml -------------------------------------------------------------------------------- /test/bench/ljq1k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/bench/ljq1k.txt -------------------------------------------------------------------------------- /test/bench/rtmerge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/bench/rtmerge.xml -------------------------------------------------------------------------------- /test/bench/sphinx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/bench/sphinx.html -------------------------------------------------------------------------------- /test/clean.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/clean.cmd -------------------------------------------------------------------------------- /test/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/clean.sh -------------------------------------------------------------------------------- /test/clean_old.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/clean_old.sh -------------------------------------------------------------------------------- /test/data/stub.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/data/stub.txt -------------------------------------------------------------------------------- /test/helpers.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/helpers.inc -------------------------------------------------------------------------------- /test/helpers_rt.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/helpers_rt.inc -------------------------------------------------------------------------------- /test/html_120.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/html_120.txt -------------------------------------------------------------------------------- /test/mre.rec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/mre.rec -------------------------------------------------------------------------------- /test/ql/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/ql/README -------------------------------------------------------------------------------- /test/ql/data/rt.kill: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/ql/data/rt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/ql/data/rt.meta -------------------------------------------------------------------------------- /test/ql/data/rt.ram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/ql/data/rt.ram -------------------------------------------------------------------------------- /test/ql/qltest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/ql/qltest.cs -------------------------------------------------------------------------------- /test/ql/qltest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/ql/qltest.java -------------------------------------------------------------------------------- /test/ql/qltest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/ql/qltest.php -------------------------------------------------------------------------------- /test/ql/qltest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/ql/qltest.py -------------------------------------------------------------------------------- /test/ql/qltest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/ql/qltest.rb -------------------------------------------------------------------------------- /test/ql/sphinx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/ql/sphinx.conf -------------------------------------------------------------------------------- /test/ql/t.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/ql/t.cmd -------------------------------------------------------------------------------- /test/ql/t2.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/ql/t2.cmd -------------------------------------------------------------------------------- /test/settings.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/settings.inc -------------------------------------------------------------------------------- /test/stopwords.txt: -------------------------------------------------------------------------------- 1 | a 2 | the 3 | and 4 | of 5 | -------------------------------------------------------------------------------- /test/stopwords_121.txt: -------------------------------------------------------------------------------- 1 | add -------------------------------------------------------------------------------- /test/synonyms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/synonyms.txt -------------------------------------------------------------------------------- /test/test_001/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_001/test.xml -------------------------------------------------------------------------------- /test/test_002/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_002/test.xml -------------------------------------------------------------------------------- /test/test_003/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_003/test.xml -------------------------------------------------------------------------------- /test/test_004/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_004/test.xml -------------------------------------------------------------------------------- /test/test_005/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_005/test.xml -------------------------------------------------------------------------------- /test/test_006/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_006/test.xml -------------------------------------------------------------------------------- /test/test_007/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_007/test.xml -------------------------------------------------------------------------------- /test/test_008/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_008/test.xml -------------------------------------------------------------------------------- /test/test_009/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_009/test.xml -------------------------------------------------------------------------------- /test/test_010/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_010/test.xml -------------------------------------------------------------------------------- /test/test_011/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_011/test.xml -------------------------------------------------------------------------------- /test/test_012/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_012/test.xml -------------------------------------------------------------------------------- /test/test_013/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_013/test.xml -------------------------------------------------------------------------------- /test/test_014/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_014/test.xml -------------------------------------------------------------------------------- /test/test_015/stops.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /test/test_015/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_015/test.xml -------------------------------------------------------------------------------- /test/test_016/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_016/test.xml -------------------------------------------------------------------------------- /test/test_017/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_017/test.xml -------------------------------------------------------------------------------- /test/test_018/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_018/test.xml -------------------------------------------------------------------------------- /test/test_019/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_019/test.xml -------------------------------------------------------------------------------- /test/test_020/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_020/test.xml -------------------------------------------------------------------------------- /test/test_021/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_021/test.xml -------------------------------------------------------------------------------- /test/test_022/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_022/test.xml -------------------------------------------------------------------------------- /test/test_023/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_023/test.xml -------------------------------------------------------------------------------- /test/test_024/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_024/test.xml -------------------------------------------------------------------------------- /test/test_025/s25.txt: -------------------------------------------------------------------------------- 1 | 1 => 1 -------------------------------------------------------------------------------- /test/test_025/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_025/test.xml -------------------------------------------------------------------------------- /test/test_026/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_026/test.xml -------------------------------------------------------------------------------- /test/test_027/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_027/test.xml -------------------------------------------------------------------------------- /test/test_028/test.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_028/test.inc -------------------------------------------------------------------------------- /test/test_029/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_029/test.xml -------------------------------------------------------------------------------- /test/test_030/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_030/test.xml -------------------------------------------------------------------------------- /test/test_031/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_031/test.xml -------------------------------------------------------------------------------- /test/test_032/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_032/test.xml -------------------------------------------------------------------------------- /test/test_033/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_033/test.xml -------------------------------------------------------------------------------- /test/test_034/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_034/test.xml -------------------------------------------------------------------------------- /test/test_035/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_035/test.xml -------------------------------------------------------------------------------- /test/test_036/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_036/test.xml -------------------------------------------------------------------------------- /test/test_037/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_037/test.xml -------------------------------------------------------------------------------- /test/test_038/stopwords.txt: -------------------------------------------------------------------------------- 1 | running -------------------------------------------------------------------------------- /test/test_038/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_038/test.xml -------------------------------------------------------------------------------- /test/test_039/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_039/test.xml -------------------------------------------------------------------------------- /test/test_040/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_040/test.xml -------------------------------------------------------------------------------- /test/test_041/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_041/test.xml -------------------------------------------------------------------------------- /test/test_042/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_042/test.xml -------------------------------------------------------------------------------- /test/test_043/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_043/test.xml -------------------------------------------------------------------------------- /test/test_044/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_044/test.xml -------------------------------------------------------------------------------- /test/test_045/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_045/test.xml -------------------------------------------------------------------------------- /test/test_046/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_046/test.xml -------------------------------------------------------------------------------- /test/test_047/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_047/test.xml -------------------------------------------------------------------------------- /test/test_048/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_048/test.xml -------------------------------------------------------------------------------- /test/test_049/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_049/test.xml -------------------------------------------------------------------------------- /test/test_050/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_050/test.xml -------------------------------------------------------------------------------- /test/test_051/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_051/test.xml -------------------------------------------------------------------------------- /test/test_052/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_052/test.xml -------------------------------------------------------------------------------- /test/test_053/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_053/test.xml -------------------------------------------------------------------------------- /test/test_054/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_054/test.xml -------------------------------------------------------------------------------- /test/test_055/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_055/test.xml -------------------------------------------------------------------------------- /test/test_056/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_056/test.xml -------------------------------------------------------------------------------- /test/test_057/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_057/test.xml -------------------------------------------------------------------------------- /test/test_058/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_058/test.xml -------------------------------------------------------------------------------- /test/test_059/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_059/test.xml -------------------------------------------------------------------------------- /test/test_060/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_060/test.xml -------------------------------------------------------------------------------- /test/test_061/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_061/test.xml -------------------------------------------------------------------------------- /test/test_062/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_062/test.xml -------------------------------------------------------------------------------- /test/test_063/stop_blend.txt: -------------------------------------------------------------------------------- 1 | and 2 | a 3 | s 4 | t -------------------------------------------------------------------------------- /test/test_063/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_063/test.xml -------------------------------------------------------------------------------- /test/test_064/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_064/test.xml -------------------------------------------------------------------------------- /test/test_065/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_065/test.xml -------------------------------------------------------------------------------- /test/test_066/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_066/test.xml -------------------------------------------------------------------------------- /test/test_067/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_067/test.xml -------------------------------------------------------------------------------- /test/test_068/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_068/test.xml -------------------------------------------------------------------------------- /test/test_069/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_069/test.xml -------------------------------------------------------------------------------- /test/test_070/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_070/test.xml -------------------------------------------------------------------------------- /test/test_071/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_071/test.xml -------------------------------------------------------------------------------- /test/test_072/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_072/test.xml -------------------------------------------------------------------------------- /test/test_073/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_073/test.xml -------------------------------------------------------------------------------- /test/test_074/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_074/test.xml -------------------------------------------------------------------------------- /test/test_075/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_075/test.xml -------------------------------------------------------------------------------- /test/test_076/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_076/test.xml -------------------------------------------------------------------------------- /test/test_077/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_077/test.xml -------------------------------------------------------------------------------- /test/test_078/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_078/test.xml -------------------------------------------------------------------------------- /test/test_079/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_079/test.xml -------------------------------------------------------------------------------- /test/test_080/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_080/test.xml -------------------------------------------------------------------------------- /test/test_081/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_081/test.xml -------------------------------------------------------------------------------- /test/test_081/words1.txt: -------------------------------------------------------------------------------- 1 | a 2 | the 3 | and 4 | -------------------------------------------------------------------------------- /test/test_081/words2.txt: -------------------------------------------------------------------------------- 1 | of 2 | tin 3 | woodman 4 | -------------------------------------------------------------------------------- /test/test_081/words3.txt: -------------------------------------------------------------------------------- 1 | to 2 | -------------------------------------------------------------------------------- /test/test_082/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_082/test.xml -------------------------------------------------------------------------------- /test/test_082/words_delta.txt: -------------------------------------------------------------------------------- 1 | woodman 2 | the 3 | of 4 | -------------------------------------------------------------------------------- /test/test_082/words_main.txt: -------------------------------------------------------------------------------- 1 | tin 2 | woodman 3 | a 4 | 5 | -------------------------------------------------------------------------------- /test/test_083/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_083/test.xml -------------------------------------------------------------------------------- /test/test_084/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_084/test.xml -------------------------------------------------------------------------------- /test/test_085/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_085/test.xml -------------------------------------------------------------------------------- /test/test_086/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_086/test.xml -------------------------------------------------------------------------------- /test/test_087/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_087/test.xml -------------------------------------------------------------------------------- /test/test_088/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_088/test.xml -------------------------------------------------------------------------------- /test/test_089/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_089/test.xml -------------------------------------------------------------------------------- /test/test_090/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_090/test.xml -------------------------------------------------------------------------------- /test/test_091/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_091/test.xml -------------------------------------------------------------------------------- /test/test_092/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_092/test.xml -------------------------------------------------------------------------------- /test/test_093/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_093/test.xml -------------------------------------------------------------------------------- /test/test_094/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_094/test.xml -------------------------------------------------------------------------------- /test/test_095/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_095/test.xml -------------------------------------------------------------------------------- /test/test_096/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_096/test.xml -------------------------------------------------------------------------------- /test/test_097/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_097/test.xml -------------------------------------------------------------------------------- /test/test_098/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_098/test.xml -------------------------------------------------------------------------------- /test/test_098/wf3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_098/wf3.txt -------------------------------------------------------------------------------- /test/test_098/wordforms.txt: -------------------------------------------------------------------------------- 1 | run-time > runer 2 | -------------------------------------------------------------------------------- /test/test_099/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_099/test.xml -------------------------------------------------------------------------------- /test/test_100/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_100/test.xml -------------------------------------------------------------------------------- /test/test_101/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_101/test.xml -------------------------------------------------------------------------------- /test/test_102/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_102/test.xml -------------------------------------------------------------------------------- /test/test_103/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_103/test.xml -------------------------------------------------------------------------------- /test/test_104/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_104/test.xml -------------------------------------------------------------------------------- /test/test_105/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_105/test.xml -------------------------------------------------------------------------------- /test/test_106/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_106/test.xml -------------------------------------------------------------------------------- /test/test_107/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_107/test.xml -------------------------------------------------------------------------------- /test/test_108/data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_108/data.xml -------------------------------------------------------------------------------- /test/test_108/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_108/test.xml -------------------------------------------------------------------------------- /test/test_109/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_109/test.xml -------------------------------------------------------------------------------- /test/test_110/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_110/test.xml -------------------------------------------------------------------------------- /test/test_111/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_111/test.xml -------------------------------------------------------------------------------- /test/test_112/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_112/test.xml -------------------------------------------------------------------------------- /test/test_113/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_113/test.xml -------------------------------------------------------------------------------- /test/test_114/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_114/test.xml -------------------------------------------------------------------------------- /test/test_115/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_115/test.xml -------------------------------------------------------------------------------- /test/test_116/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_116/test.xml -------------------------------------------------------------------------------- /test/test_117/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_117/test.xml -------------------------------------------------------------------------------- /test/test_118/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_118/test.xml -------------------------------------------------------------------------------- /test/test_119/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_119/test.xml -------------------------------------------------------------------------------- /test/test_120/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_120/test.xml -------------------------------------------------------------------------------- /test/test_121/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_121/test.xml -------------------------------------------------------------------------------- /test/test_122/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_122/test.xml -------------------------------------------------------------------------------- /test/test_123/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_123/test.xml -------------------------------------------------------------------------------- /test/test_124/field_124_match.txt: -------------------------------------------------------------------------------- 1 | match -------------------------------------------------------------------------------- /test/test_124/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_124/test.xml -------------------------------------------------------------------------------- /test/test_125/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_125/test.xml -------------------------------------------------------------------------------- /test/test_126/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_126/test.xml -------------------------------------------------------------------------------- /test/test_127/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_127/test.xml -------------------------------------------------------------------------------- /test/test_128/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_128/test.xml -------------------------------------------------------------------------------- /test/test_129/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_129/test.xml -------------------------------------------------------------------------------- /test/test_130/512k.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_130/512k.xml -------------------------------------------------------------------------------- /test/test_130/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_130/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_130/test.xml -------------------------------------------------------------------------------- /test/test_131/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_131/test.xml -------------------------------------------------------------------------------- /test/test_132/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_132/test.xml -------------------------------------------------------------------------------- /test/test_133/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_133/test.xml -------------------------------------------------------------------------------- /test/test_134/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_134/test.xml -------------------------------------------------------------------------------- /test/test_135/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_135/test.xml -------------------------------------------------------------------------------- /test/test_136/exceptions.txt: -------------------------------------------------------------------------------- 1 | foo/bar => foobar 2 | -------------------------------------------------------------------------------- /test/test_136/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_136/test.xml -------------------------------------------------------------------------------- /test/test_137/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_137/test.xml -------------------------------------------------------------------------------- /test/test_138/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_138/test.xml -------------------------------------------------------------------------------- /test/test_139/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_139/test.xml -------------------------------------------------------------------------------- /test/test_140/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_140/test.xml -------------------------------------------------------------------------------- /test/test_141/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_141/test.xml -------------------------------------------------------------------------------- /test/test_142/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_142/test.xml -------------------------------------------------------------------------------- /test/test_143/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_143/test.xml -------------------------------------------------------------------------------- /test/test_143/wordforms.txt: -------------------------------------------------------------------------------- 1 | 0 es > none 2 | -------------------------------------------------------------------------------- /test/test_144/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_144/test.xml -------------------------------------------------------------------------------- /test/test_145/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_145/test.xml -------------------------------------------------------------------------------- /test/test_146/stopwords.txt: -------------------------------------------------------------------------------- 1 | not 2 | as 3 | -------------------------------------------------------------------------------- /test/test_146/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_146/test.xml -------------------------------------------------------------------------------- /test/test_147/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_147/test.xml -------------------------------------------------------------------------------- /test/test_148/doc1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_148/doc1.txt -------------------------------------------------------------------------------- /test/test_148/doc2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_148/doc2.txt -------------------------------------------------------------------------------- /test/test_148/doc3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_148/doc3.txt -------------------------------------------------------------------------------- /test/test_148/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_148/test.xml -------------------------------------------------------------------------------- /test/test_149/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_149/test.xml -------------------------------------------------------------------------------- /test/test_150/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_150/test.xml -------------------------------------------------------------------------------- /test/test_151/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_151/test.xml -------------------------------------------------------------------------------- /test/test_152/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_152/test.xml -------------------------------------------------------------------------------- /test/test_153/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_153/test.xml -------------------------------------------------------------------------------- /test/test_154/stopwords.txt: -------------------------------------------------------------------------------- 1 | a 2 | dog 3 | cat 4 | eats -------------------------------------------------------------------------------- /test/test_154/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_154/test.xml -------------------------------------------------------------------------------- /test/test_155/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_155/test.xml -------------------------------------------------------------------------------- /test/test_156/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_156/test.xml -------------------------------------------------------------------------------- /test/test_157/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_157/test.xml -------------------------------------------------------------------------------- /test/test_158/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_158/test.xml -------------------------------------------------------------------------------- /test/test_159/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_159/test.xml -------------------------------------------------------------------------------- /test/test_160/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_160/test.xml -------------------------------------------------------------------------------- /test/test_161/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_161/test.xml -------------------------------------------------------------------------------- /test/test_162/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_162/test.xml -------------------------------------------------------------------------------- /test/test_163/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_163/test.xml -------------------------------------------------------------------------------- /test/test_164/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_164/test.xml -------------------------------------------------------------------------------- /test/test_165/synonyms3.txt: -------------------------------------------------------------------------------- 1 | ; => ;) -------------------------------------------------------------------------------- /test/test_165/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_165/test.xml -------------------------------------------------------------------------------- /test/test_166/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_166/test.xml -------------------------------------------------------------------------------- /test/test_167/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_167/test.xml -------------------------------------------------------------------------------- /test/test_168/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_168/test.xml -------------------------------------------------------------------------------- /test/test_169/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_169/test.xml -------------------------------------------------------------------------------- /test/test_170/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_170/test.xml -------------------------------------------------------------------------------- /test/test_171/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_171/test.xml -------------------------------------------------------------------------------- /test/test_172/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_172/test.xml -------------------------------------------------------------------------------- /test/test_173/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_173/test.xml -------------------------------------------------------------------------------- /test/test_174/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_174/test.xml -------------------------------------------------------------------------------- /test/test_175/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_175/test.xml -------------------------------------------------------------------------------- /test/test_176/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_176/test.xml -------------------------------------------------------------------------------- /test/test_177/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_177/test.xml -------------------------------------------------------------------------------- /test/test_178/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_178/test.xml -------------------------------------------------------------------------------- /test/test_179/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_179/test.xml -------------------------------------------------------------------------------- /test/test_180/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_180/test.xml -------------------------------------------------------------------------------- /test/test_181/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_181/test.xml -------------------------------------------------------------------------------- /test/test_182/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_182/test.xml -------------------------------------------------------------------------------- /test/test_183/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_183/test.xml -------------------------------------------------------------------------------- /test/test_184/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_184/test.xml -------------------------------------------------------------------------------- /test/test_185/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_185/test.xml -------------------------------------------------------------------------------- /test/test_186/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_186/test.xml -------------------------------------------------------------------------------- /test/test_187/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_187/test.xml -------------------------------------------------------------------------------- /test/test_188/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_188/test.xml -------------------------------------------------------------------------------- /test/test_189/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_189/test.xml -------------------------------------------------------------------------------- /test/test_190/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_190/test.xml -------------------------------------------------------------------------------- /test/test_191/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_191/test.xml -------------------------------------------------------------------------------- /test/test_192/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_192/test.xml -------------------------------------------------------------------------------- /test/test_193/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_193/test.xml -------------------------------------------------------------------------------- /test/test_194/file1.txt: -------------------------------------------------------------------------------- 1 | blue flowers are always red -------------------------------------------------------------------------------- /test/test_194/file2.txt: -------------------------------------------------------------------------------- 1 | fx-35 is a car -------------------------------------------------------------------------------- /test/test_194/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_194/test.xml -------------------------------------------------------------------------------- /test/test_195/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_195/test.xml -------------------------------------------------------------------------------- /test/test_196/ex21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_196/ex21.txt -------------------------------------------------------------------------------- /test/test_196/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_196/test.xml -------------------------------------------------------------------------------- /test/test_196/wf_pre.txt: -------------------------------------------------------------------------------- 1 | forty > 40 -------------------------------------------------------------------------------- /test/test_196/words1.txt: -------------------------------------------------------------------------------- 1 | simple form => result1 2 | manuscript => book1 -------------------------------------------------------------------------------- /test/test_199/stopwords.txt: -------------------------------------------------------------------------------- 1 | the 2 | -------------------------------------------------------------------------------- /test/test_207/wordforms2.txt: -------------------------------------------------------------------------------- 1 | 13 => тринадцать 2 | -------------------------------------------------------------------------------- /test/test_210/stopwords.txt: -------------------------------------------------------------------------------- 1 | business 2 | runs 3 | -------------------------------------------------------------------------------- /test/test_218/wordforms.txt: -------------------------------------------------------------------------------- 1 | querymapped > inbetween1 -------------------------------------------------------------------------------- /test/test_233/data/reload.spd: -------------------------------------------------------------------------------- 1 | cdddb``dď -------------------------------------------------------------------------------- /test/test_233/data/reload.spe: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test/test_233/data/reload.spm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_233/data/reload.spp: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test/test_233/data/test.spd: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test/test_233/data/test.spe: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test/test_233/data/test.spm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_233/data/test.spp: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test/test_250/data/plain2.spd: -------------------------------------------------------------------------------- 1 | cd& -------------------------------------------------------------------------------- /test/test_250/data/plain2.spe: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test/test_250/data/plain2.spm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_250/data/plain2.spp: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test/test_250/data/plain2.spt: -------------------------------------------------------------------------------- 1 | cfFF  -------------------------------------------------------------------------------- /test/test_255/wf1.txt: -------------------------------------------------------------------------------- 1 | tofu > soy 2 | -------------------------------------------------------------------------------- /test/test_309/jieba_user_dict.txt: -------------------------------------------------------------------------------- 1 | 云计算 2 | 韩玉鉴赏 3 | 蓝翔 nz 4 | 区块链 10 nz 5 | -------------------------------------------------------------------------------- /test/test_310/jieba_user_dict.txt: -------------------------------------------------------------------------------- 1 | 云计算 2 | 韩玉鉴赏 3 | 蓝翔 nz 4 | 区块链 10 nz 5 | -------------------------------------------------------------------------------- /test/test_310/wordforms.txt: -------------------------------------------------------------------------------- 1 | querymapped > inbetween1 -------------------------------------------------------------------------------- /test/test_334/exc.txt: -------------------------------------------------------------------------------- 1 | IT => IT -------------------------------------------------------------------------------- /test/test_360/stops.txt: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /test/test_397/stops.txt: -------------------------------------------------------------------------------- 1 | the 2 | I 3 | -------------------------------------------------------------------------------- /test/test_397/wordforms.txt: -------------------------------------------------------------------------------- 1 | black dog > blog -------------------------------------------------------------------------------- /test/test_403/exc1.txt: -------------------------------------------------------------------------------- 1 | a b => c -------------------------------------------------------------------------------- /test/test_403/stops.txt: -------------------------------------------------------------------------------- 1 | hello 2 | world 3 | -------------------------------------------------------------------------------- /test/test_403/stops1.txt: -------------------------------------------------------------------------------- 1 | a 2 | b -------------------------------------------------------------------------------- /test/test_405/exc.txt: -------------------------------------------------------------------------------- 1 | b => b1 -------------------------------------------------------------------------------- /test/test_405/stop.txt: -------------------------------------------------------------------------------- 1 | c1 -------------------------------------------------------------------------------- /test/test_405/wordforms1.txt: -------------------------------------------------------------------------------- 1 | a > a1 -------------------------------------------------------------------------------- /test/test_406/data/index.0.spd: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test/test_406/data/index.0.spe: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test/test_406/data/index.0.spm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_406/data/index.0.spp: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /test/test_408/words1.txt: -------------------------------------------------------------------------------- 1 | a 2 | the 3 | and 4 | -------------------------------------------------------------------------------- /test/test_408/words2.txt: -------------------------------------------------------------------------------- 1 | of 2 | tin 3 | woodman 4 | -------------------------------------------------------------------------------- /test/test_408/words3.txt: -------------------------------------------------------------------------------- 1 | to 2 | -------------------------------------------------------------------------------- /test/test_409/hw1.txt: -------------------------------------------------------------------------------- 1 | more 2 | many -------------------------------------------------------------------------------- /test/test_409/hw3.txt: -------------------------------------------------------------------------------- 1 | much 2 | all -------------------------------------------------------------------------------- /test/test_409/stop1.txt: -------------------------------------------------------------------------------- 1 | a 2 | and 3 | -------------------------------------------------------------------------------- /test/test_409/stop2.txt: -------------------------------------------------------------------------------- 1 | be -------------------------------------------------------------------------------- /test/test_432/data1.csv: -------------------------------------------------------------------------------- 1 | 1; a; 1 -------------------------------------------------------------------------------- /test/test_464/stops.txt: -------------------------------------------------------------------------------- 1 | hello 2 | world 3 | -------------------------------------------------------------------------------- /test/test_icu.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_icu.conf -------------------------------------------------------------------------------- /test/test_odbc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_odbc.conf -------------------------------------------------------------------------------- /test/test_re.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/test_re.conf -------------------------------------------------------------------------------- /test/ubertest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/ubertest.php -------------------------------------------------------------------------------- /test/valgrind.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/valgrind.supp -------------------------------------------------------------------------------- /test/wordforms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/test/wordforms.txt -------------------------------------------------------------------------------- /translator.role.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/translator.role.tpl -------------------------------------------------------------------------------- /valgrind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manticoresoftware/manticoresearch/HEAD/valgrind --------------------------------------------------------------------------------