├── .gitignore ├── 010_Intro ├── 00_README.md ├── 05_What_is_it.md ├── 10_Installing_ES.md ├── 15_API.md ├── 20_Document.md ├── 25_Tutorial_Indexing.md ├── 30_Tutorial_Search.md ├── 35_Tutorial_Aggregations.md ├── 40_Tutorial_Conclusion.md ├── 45_Distributed.md └── 50_Conclusion.md ├── 020_Distributed_Cluster ├── 00_Intro.md ├── 05_Empty_cluster.md ├── 10_Cluster_health.md ├── 15_Add_an_index.md ├── 20_Add_failover.md ├── 25_Scale_horizontally.md ├── 30_Scale_more.md └── 35_Coping_with_failure.md ├── 030_Data ├── 00_Intro.md ├── 05_Document.md ├── 10_Index.md ├── 15_Get.md ├── 20_Exists.md ├── 25_Update.md ├── 30_Create.md ├── 35_Delete.md ├── 40_Version_control.md ├── 45_Partial_update.md ├── 50_Mget.md ├── 55_Bulk.md └── 60_Conclusion.md ├── 040_Distributed_CRUD ├── 00_Intro.md ├── 05_Routing.md ├── 10_Shard_interaction.md ├── 15_Create_index_delete.md ├── 20_Retrieving.md ├── 25_Partial_updates.md ├── 30_Bulk_requests.md └── 35_Bulk_format.md ├── 050_Search ├── 00_Intro.md ├── 05_Empty_search.md ├── 10_Multi_index_multi_type.md ├── 15_Pagination.md └── 20_Query_string.md ├── 052_Mapping_Analysis ├── 00_Intro.md ├── 25_Data_type_differences.md ├── 30_Exact_vs_full_text.md ├── 35_Inverted_index.md ├── 40_Analysis.md ├── 45_Mapping.md └── 50_Complex_datatypes.md ├── 054_Query_DSL ├── 00_Intro.md ├── 55_Request_body_search.md ├── 60_Query_DSL.md ├── 65_Queries_vs_filters.md ├── 70_Important_clauses.md ├── 75_Queries_with_filters.md ├── 80_Validating_queries.md └── 85_Conclusion.md ├── 056_Sorting ├── 00_Intro.md ├── 85_Sorting.md ├── 88_String_sorting.md ├── 90_What_is_relevance.md └── 95_Fielddata.md ├── 060_Distributed_Search ├── 00_Intro.md ├── 05_Query_phase.md ├── 10_Fetch_phase.md ├── 15_Search_options.md └── 20_Scan_and_scroll.md ├── 070_Index_Mgmt ├── 00_Intro.md ├── 05_Create_Delete.md ├── 10_Settings.md ├── 15_Configure_Analyzer.md ├── 20_Custom_Analyzers.md ├── 25_Mappings.md ├── 30_Root_Object.md ├── 31_Metadata_source.md ├── 32_Metadata_all.md ├── 33_Metadata_ID.md ├── 35_Dynamic_Mapping.md ├── 40_Custom_Dynamic_Mapping.md ├── 45_Default_Mapping.md ├── 50_Reindexing.md └── 55_Aliases.md ├── 075_Inside_a_shard ├── 00_Intro.md ├── 20_Making_text_searchable.md ├── 30_Dynamic_indices.md ├── 40_Near_real_time.md ├── 50_Persistent_changes.md └── 60_Segment_merging.md ├── 080_Structured_Search ├── 00_structuredsearch.md ├── 05_term.md ├── 10_compoundfilters.md ├── 15_terms.md ├── 20_contains.md ├── 25_ranges.md ├── 30_existsmissing.md ├── 40_bitsets.md └── 45_filter_order.md ├── 100_Full_Text_Search ├── 00_Intro.md ├── 05_Match_query.md ├── 10_Multi_word_queries.md ├── 15_Combining_queries.md ├── 20_How_match_uses_bool.md ├── 25_Boosting_clauses.md ├── 30_Controlling_analysis.md └── 35_Relevance_is_broken.md ├── 110_Multi_Field_Search ├── 00_Intro.md ├── 05_Multiple_query_strings.md ├── 10_Single_query_string.md ├── 15_Best_field.md ├── 20_Tuning_best_field_queries.md ├── 25_Multi_match_query.md ├── 30_Most_fields.md ├── 35_Entity_search.md ├── 40_Field_centric.md ├── 45_Custom_all.md ├── 50_Cross_field.md └── 55_Not_analyzed.md ├── 120_Proximity_Matching ├── 00_Intro.md ├── 05_Phrase_matching.md ├── 10_Slop.md ├── 15_Multi_value_fields.md ├── 20_Scoring.md ├── 25_Relevance.md ├── 30_Performance.md └── 35_Shingles.md ├── 130_Partial_Matching ├── 00_Intro.md ├── 05_Postcodes.md ├── 10_Prefix_query.md ├── 15_WildcardRegexp.md ├── 20_Match_phrase_prefix.md ├── 25_Index_time.md ├── 30_Ngram_intro.md ├── 35_Search_as_you_type.md └── 40_Compound_words.md ├── 170_Relevance ├── 05_Intro.md ├── 10_Scoring_theory.md ├── 15_Practical_scoring.md ├── 20_Query_time_boosting.md ├── 25_Query_scoring.md ├── 30_Not_quite_not.md ├── 35_Ignoring_TFIDF.md ├── 40_Function_score_query.md ├── 45_Popularity.md ├── 50_Boosting_filtered_subsets.md ├── 55_Random_scoring.md ├── 60_Decay_functions.md ├── 65_Script_score.md ├── 70_Pluggable_similarities.md ├── 75_Changing_similarities.md └── 80_Conclusion.md ├── 200_Language_intro ├── 00_Intro.md ├── 10_Using.md ├── 20_Configuring.md ├── 30_Language_pitfalls.md ├── 40_One_language_per_doc.md ├── 50_One_language_per_field.md ├── 60_Mixed_language_fields.md └── 70_Conclusion.md ├── 210_Identifying_words ├── 00_Intro.md ├── 10_Standard_analyzer.md ├── 20_Standard_tokenizer.md ├── 30_ICU_plugin.md ├── 40_ICU_tokenizer.md └── 50_Tidying_text.md ├── 220_Token_normalization ├── 00_Intro.md ├── 10_Lowercasing.md ├── 20_Removing_diacritics.md ├── 30_Unicode_world.md ├── 40_Case_folding.md ├── 50_Character_folding.md └── 60_Sorting_and_collations.md ├── 230_Stemming ├── 00_Intro.md ├── 10_Algorithmic_stemmers.md ├── 20_Dictionary_stemmers.md ├── 30_Hunspell_stemmer.md ├── 40_Choosing_a_stemmer.md ├── 50_Controlling_stemming.md └── 60_Stemming_in_situ.md ├── 240_Stopwords ├── 10_Intro.md ├── 20_Using_stopwords.md ├── 30_Stopwords_and_performance.md ├── 40_Divide_and_conquer.md ├── 50_Phrase_queries.md ├── 60_Common_grams.md └── 70_Relevance.md ├── 260_Synonyms ├── 10_Intro.md ├── 20_Using_synonyms.md ├── 30_Synonym_formats.md ├── 40_Expand_contract.md ├── 50_Analysis_chain.md ├── 60_Multi_word_synonyms.md └── 70_Symbol_synonyms.md ├── 270_Fuzzy_matching ├── 10_Intro.md ├── 20_Fuzziness.md ├── 30_Fuzzy_query.md ├── 40_Fuzzy_match_query.md ├── 50_Scoring_fuzziness.md └── 60_Phonetic_matching.md ├── 300_Aggregations ├── 05_overview.md ├── 100_circuit_breaker_fd_settings.md ├── 105_filtering.md ├── 10_facets.md ├── 110_docvalues.md ├── 115_eager.md ├── 120_breadth_vs_depth.md ├── 125_Conclusion.md ├── 15_concepts_buckets.md ├── 20_basic_example.md ├── 21_add_metric.md ├── 22_nested_bucket.md ├── 23_extra_metrics.md ├── 28_bucket_metric_list.md ├── 30_histogram.md ├── 35_date_histogram.md ├── 40_scope.md ├── 45_filtering.md ├── 50_sorting_ordering.md ├── 55_approx_intro.md ├── 60_cardinality.md ├── 65_percentiles.md ├── 70_sigterms_intro.md ├── 75_sigterms.md ├── 90_fielddata.md └── 95_analyzed_vs_not.md ├── 310_Geopoints ├── 00_Intro.md ├── 20_Geopoints.md ├── 30_Filter_by_geopoint.md ├── 32_Bounding_box.md ├── 34_Geo_distance.md ├── 36_Caching_geofilters.md ├── 38_Reducing_memory.md └── 50_Sorting_by_distance.md ├── 320_Geohashes ├── 00_Intro.md ├── 40_Geohashes.md ├── 50_Geohash_mapping.md └── 60_Geohash_cell_filter.md ├── 330_Geo_aggs ├── 00_Intro.md ├── 60_Geo_aggs.md ├── 62_Geo_distance_agg.md ├── 64_Geohash_grid_agg.md └── 66_Geo_bounds_agg.md ├── 340_Geoshapes ├── 00_Intro.md ├── 70_Geoshapes.md ├── 72_Mapping_geo_shapes.md ├── 74_Indexing_geo_shapes.md ├── 76_Querying_geo_shapes.md ├── 78_Indexed_geo_shapes.md └── 80_Caching_geo_shapes.md ├── 400_Relationships ├── 10_Intro.md ├── 15_Application_joins.md ├── 20_Denormalization.md ├── 22_Top_hits.md ├── 25_Concurrency.md └── 26_Concurrency_solutions.md ├── 402_Nested ├── 00_Intro.md ├── 30_Nested_objects.md ├── 31_Nested_mapping.md ├── 32_Nested_query.md ├── 33_Nested_sorting.md └── 35_Nested_aggs.md ├── 404_Parent_Child ├── 00_Intro.md ├── 40_Parent_child.md ├── 45_Indexing_parent_child.md ├── 50_Has_child.md ├── 55_Has_parent.md ├── 60_Children_agg.md ├── 65_Grandparents.md └── 70_Practical_considerations.md ├── 410_Scaling ├── 10_Intro.md ├── 15_Shard.md ├── 20_Overallocation.md ├── 25_Kagillion_shards.md ├── 30_Capacity_planning.md ├── 35_Replica_shards.md ├── 40_Multiple_indices.md ├── 45_Index_per_timeframe.md ├── 50_Index_templates.md ├── 55_Retiring_data.md ├── 60_Index_per_user.md ├── 65_Shared_index.md ├── 70_Faking_it.md ├── 75_One_big_user.md └── 80_Scale_is_not_infinite.md ├── 500_Cluster_Admin ├── 10_intro.md ├── 15_marvel.md ├── 20_health.md ├── 30_node_stats.md └── 40_other_stats.md ├── 510_Deployment ├── 10_intro.md ├── 20_hardware.md ├── 30_other.md ├── 40_config.md ├── 45_dont_touch.md ├── 50_heap.md ├── 60_file_descriptors.md ├── 70_conclusion.md └── 80_cluster_settings.md ├── 520_Post_Deployment ├── 00_Intro.md ├── 10_dynamic_settings.md ├── 20_logging.md ├── 30_indexing_perf.md ├── 40_rolling_restart.md ├── 50_backup.md ├── 60_restore.md └── 70_conclusion.md ├── Changelog.md ├── README.md ├── README_Wiki.md ├── SUMMARY.md ├── TOC.md ├── config.json ├── cover.jpg ├── cover.psd ├── cover ├── background.jpg └── logo.png ├── cover_small.jpg ├── images ├── cover.png ├── elas_0201.png ├── elas_0202.png ├── elas_0203.png ├── elas_0204.png ├── elas_0205.png ├── elas_0206.png ├── elas_0301.png ├── elas_0401.png ├── elas_0402.png ├── elas_0403.png ├── elas_0404.png ├── elas_0405.png ├── elas_0406.png ├── elas_0901.png ├── elas_0902.png ├── elas_1101.png ├── elas_1102.png ├── elas_1103.png ├── elas_1104.png ├── elas_1105.png ├── elas_1106.png ├── elas_1107.png ├── elas_1108.png ├── elas_1109.png ├── elas_1110.png ├── elas_1111.png ├── elas_1701.png ├── elas_1702.png ├── elas_1703.png ├── elas_1704.png ├── elas_1705.png ├── elas_1706.png ├── elas_17in01.png ├── elas_17in02.png ├── elas_28in01.png ├── elas_28in02.png ├── elas_29in01.png ├── elas_29in02.png ├── elas_29in03.png ├── elas_33in01.png ├── elas_33in02.png ├── elas_4401.png ├── elas_4402.png ├── elas_4403.png └── elas_4404.png ├── push.sh └── update.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/.gitignore -------------------------------------------------------------------------------- /010_Intro/00_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/010_Intro/00_README.md -------------------------------------------------------------------------------- /010_Intro/05_What_is_it.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/010_Intro/05_What_is_it.md -------------------------------------------------------------------------------- /010_Intro/10_Installing_ES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/010_Intro/10_Installing_ES.md -------------------------------------------------------------------------------- /010_Intro/15_API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/010_Intro/15_API.md -------------------------------------------------------------------------------- /010_Intro/20_Document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/010_Intro/20_Document.md -------------------------------------------------------------------------------- /010_Intro/25_Tutorial_Indexing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/010_Intro/25_Tutorial_Indexing.md -------------------------------------------------------------------------------- /010_Intro/30_Tutorial_Search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/010_Intro/30_Tutorial_Search.md -------------------------------------------------------------------------------- /010_Intro/35_Tutorial_Aggregations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/010_Intro/35_Tutorial_Aggregations.md -------------------------------------------------------------------------------- /010_Intro/40_Tutorial_Conclusion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/010_Intro/40_Tutorial_Conclusion.md -------------------------------------------------------------------------------- /010_Intro/45_Distributed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/010_Intro/45_Distributed.md -------------------------------------------------------------------------------- /010_Intro/50_Conclusion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/010_Intro/50_Conclusion.md -------------------------------------------------------------------------------- /020_Distributed_Cluster/00_Intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/020_Distributed_Cluster/00_Intro.md -------------------------------------------------------------------------------- /020_Distributed_Cluster/05_Empty_cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/020_Distributed_Cluster/05_Empty_cluster.md -------------------------------------------------------------------------------- /020_Distributed_Cluster/10_Cluster_health.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/020_Distributed_Cluster/10_Cluster_health.md -------------------------------------------------------------------------------- /020_Distributed_Cluster/15_Add_an_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/020_Distributed_Cluster/15_Add_an_index.md -------------------------------------------------------------------------------- /020_Distributed_Cluster/20_Add_failover.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/020_Distributed_Cluster/20_Add_failover.md -------------------------------------------------------------------------------- /020_Distributed_Cluster/25_Scale_horizontally.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/020_Distributed_Cluster/25_Scale_horizontally.md -------------------------------------------------------------------------------- /020_Distributed_Cluster/30_Scale_more.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/020_Distributed_Cluster/30_Scale_more.md -------------------------------------------------------------------------------- /020_Distributed_Cluster/35_Coping_with_failure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/020_Distributed_Cluster/35_Coping_with_failure.md -------------------------------------------------------------------------------- /030_Data/00_Intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/030_Data/00_Intro.md -------------------------------------------------------------------------------- /030_Data/05_Document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/030_Data/05_Document.md -------------------------------------------------------------------------------- /030_Data/10_Index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/030_Data/10_Index.md -------------------------------------------------------------------------------- /030_Data/15_Get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/030_Data/15_Get.md -------------------------------------------------------------------------------- /030_Data/20_Exists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/030_Data/20_Exists.md -------------------------------------------------------------------------------- /030_Data/25_Update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/030_Data/25_Update.md -------------------------------------------------------------------------------- /030_Data/30_Create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/030_Data/30_Create.md -------------------------------------------------------------------------------- /030_Data/35_Delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/030_Data/35_Delete.md -------------------------------------------------------------------------------- /030_Data/40_Version_control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/030_Data/40_Version_control.md -------------------------------------------------------------------------------- /030_Data/45_Partial_update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/030_Data/45_Partial_update.md -------------------------------------------------------------------------------- /030_Data/50_Mget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/030_Data/50_Mget.md -------------------------------------------------------------------------------- /030_Data/55_Bulk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/030_Data/55_Bulk.md -------------------------------------------------------------------------------- /030_Data/60_Conclusion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/030_Data/60_Conclusion.md -------------------------------------------------------------------------------- /040_Distributed_CRUD/00_Intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/040_Distributed_CRUD/00_Intro.md -------------------------------------------------------------------------------- /040_Distributed_CRUD/05_Routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/040_Distributed_CRUD/05_Routing.md -------------------------------------------------------------------------------- /040_Distributed_CRUD/10_Shard_interaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/040_Distributed_CRUD/10_Shard_interaction.md -------------------------------------------------------------------------------- /040_Distributed_CRUD/15_Create_index_delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/040_Distributed_CRUD/15_Create_index_delete.md -------------------------------------------------------------------------------- /040_Distributed_CRUD/20_Retrieving.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/040_Distributed_CRUD/20_Retrieving.md -------------------------------------------------------------------------------- /040_Distributed_CRUD/25_Partial_updates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/040_Distributed_CRUD/25_Partial_updates.md -------------------------------------------------------------------------------- /040_Distributed_CRUD/30_Bulk_requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/040_Distributed_CRUD/30_Bulk_requests.md -------------------------------------------------------------------------------- /040_Distributed_CRUD/35_Bulk_format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/040_Distributed_CRUD/35_Bulk_format.md -------------------------------------------------------------------------------- /050_Search/00_Intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/050_Search/00_Intro.md -------------------------------------------------------------------------------- /050_Search/05_Empty_search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/050_Search/05_Empty_search.md -------------------------------------------------------------------------------- /050_Search/10_Multi_index_multi_type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/050_Search/10_Multi_index_multi_type.md -------------------------------------------------------------------------------- /050_Search/15_Pagination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/050_Search/15_Pagination.md -------------------------------------------------------------------------------- /050_Search/20_Query_string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/050_Search/20_Query_string.md -------------------------------------------------------------------------------- /052_Mapping_Analysis/00_Intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/052_Mapping_Analysis/00_Intro.md -------------------------------------------------------------------------------- /052_Mapping_Analysis/25_Data_type_differences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/052_Mapping_Analysis/25_Data_type_differences.md -------------------------------------------------------------------------------- /052_Mapping_Analysis/30_Exact_vs_full_text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/052_Mapping_Analysis/30_Exact_vs_full_text.md -------------------------------------------------------------------------------- /052_Mapping_Analysis/35_Inverted_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/052_Mapping_Analysis/35_Inverted_index.md -------------------------------------------------------------------------------- /052_Mapping_Analysis/40_Analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/052_Mapping_Analysis/40_Analysis.md -------------------------------------------------------------------------------- /052_Mapping_Analysis/45_Mapping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/052_Mapping_Analysis/45_Mapping.md -------------------------------------------------------------------------------- /052_Mapping_Analysis/50_Complex_datatypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/052_Mapping_Analysis/50_Complex_datatypes.md -------------------------------------------------------------------------------- /054_Query_DSL/00_Intro.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /054_Query_DSL/55_Request_body_search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/054_Query_DSL/55_Request_body_search.md -------------------------------------------------------------------------------- /054_Query_DSL/60_Query_DSL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/054_Query_DSL/60_Query_DSL.md -------------------------------------------------------------------------------- /054_Query_DSL/65_Queries_vs_filters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/054_Query_DSL/65_Queries_vs_filters.md -------------------------------------------------------------------------------- /054_Query_DSL/70_Important_clauses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/054_Query_DSL/70_Important_clauses.md -------------------------------------------------------------------------------- /054_Query_DSL/75_Queries_with_filters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/054_Query_DSL/75_Queries_with_filters.md -------------------------------------------------------------------------------- /054_Query_DSL/80_Validating_queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/054_Query_DSL/80_Validating_queries.md -------------------------------------------------------------------------------- /054_Query_DSL/85_Conclusion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/054_Query_DSL/85_Conclusion.md -------------------------------------------------------------------------------- /056_Sorting/00_Intro.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /056_Sorting/85_Sorting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/056_Sorting/85_Sorting.md -------------------------------------------------------------------------------- /056_Sorting/88_String_sorting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/056_Sorting/88_String_sorting.md -------------------------------------------------------------------------------- /056_Sorting/90_What_is_relevance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/056_Sorting/90_What_is_relevance.md -------------------------------------------------------------------------------- /056_Sorting/95_Fielddata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/056_Sorting/95_Fielddata.md -------------------------------------------------------------------------------- /060_Distributed_Search/00_Intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/060_Distributed_Search/00_Intro.md -------------------------------------------------------------------------------- /060_Distributed_Search/05_Query_phase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/060_Distributed_Search/05_Query_phase.md -------------------------------------------------------------------------------- /060_Distributed_Search/10_Fetch_phase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/060_Distributed_Search/10_Fetch_phase.md -------------------------------------------------------------------------------- /060_Distributed_Search/15_Search_options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/060_Distributed_Search/15_Search_options.md -------------------------------------------------------------------------------- /060_Distributed_Search/20_Scan_and_scroll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/060_Distributed_Search/20_Scan_and_scroll.md -------------------------------------------------------------------------------- /070_Index_Mgmt/00_Intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/070_Index_Mgmt/00_Intro.md -------------------------------------------------------------------------------- /070_Index_Mgmt/05_Create_Delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/070_Index_Mgmt/05_Create_Delete.md -------------------------------------------------------------------------------- /070_Index_Mgmt/10_Settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/070_Index_Mgmt/10_Settings.md -------------------------------------------------------------------------------- /070_Index_Mgmt/15_Configure_Analyzer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/070_Index_Mgmt/15_Configure_Analyzer.md -------------------------------------------------------------------------------- /070_Index_Mgmt/20_Custom_Analyzers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/070_Index_Mgmt/20_Custom_Analyzers.md -------------------------------------------------------------------------------- /070_Index_Mgmt/25_Mappings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/070_Index_Mgmt/25_Mappings.md -------------------------------------------------------------------------------- /070_Index_Mgmt/30_Root_Object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/070_Index_Mgmt/30_Root_Object.md -------------------------------------------------------------------------------- /070_Index_Mgmt/31_Metadata_source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/070_Index_Mgmt/31_Metadata_source.md -------------------------------------------------------------------------------- /070_Index_Mgmt/32_Metadata_all.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/070_Index_Mgmt/32_Metadata_all.md -------------------------------------------------------------------------------- /070_Index_Mgmt/33_Metadata_ID.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/070_Index_Mgmt/33_Metadata_ID.md -------------------------------------------------------------------------------- /070_Index_Mgmt/35_Dynamic_Mapping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/070_Index_Mgmt/35_Dynamic_Mapping.md -------------------------------------------------------------------------------- /070_Index_Mgmt/40_Custom_Dynamic_Mapping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/070_Index_Mgmt/40_Custom_Dynamic_Mapping.md -------------------------------------------------------------------------------- /070_Index_Mgmt/45_Default_Mapping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/070_Index_Mgmt/45_Default_Mapping.md -------------------------------------------------------------------------------- /070_Index_Mgmt/50_Reindexing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/070_Index_Mgmt/50_Reindexing.md -------------------------------------------------------------------------------- /070_Index_Mgmt/55_Aliases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/070_Index_Mgmt/55_Aliases.md -------------------------------------------------------------------------------- /075_Inside_a_shard/00_Intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/075_Inside_a_shard/00_Intro.md -------------------------------------------------------------------------------- /075_Inside_a_shard/20_Making_text_searchable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/075_Inside_a_shard/20_Making_text_searchable.md -------------------------------------------------------------------------------- /075_Inside_a_shard/30_Dynamic_indices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/075_Inside_a_shard/30_Dynamic_indices.md -------------------------------------------------------------------------------- /075_Inside_a_shard/40_Near_real_time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/075_Inside_a_shard/40_Near_real_time.md -------------------------------------------------------------------------------- /075_Inside_a_shard/50_Persistent_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/075_Inside_a_shard/50_Persistent_changes.md -------------------------------------------------------------------------------- /075_Inside_a_shard/60_Segment_merging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/075_Inside_a_shard/60_Segment_merging.md -------------------------------------------------------------------------------- /080_Structured_Search/00_structuredsearch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/080_Structured_Search/00_structuredsearch.md -------------------------------------------------------------------------------- /080_Structured_Search/05_term.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/080_Structured_Search/05_term.md -------------------------------------------------------------------------------- /080_Structured_Search/10_compoundfilters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/080_Structured_Search/10_compoundfilters.md -------------------------------------------------------------------------------- /080_Structured_Search/15_terms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/080_Structured_Search/15_terms.md -------------------------------------------------------------------------------- /080_Structured_Search/20_contains.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/080_Structured_Search/20_contains.md -------------------------------------------------------------------------------- /080_Structured_Search/25_ranges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/080_Structured_Search/25_ranges.md -------------------------------------------------------------------------------- /080_Structured_Search/30_existsmissing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/080_Structured_Search/30_existsmissing.md -------------------------------------------------------------------------------- /080_Structured_Search/40_bitsets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/080_Structured_Search/40_bitsets.md -------------------------------------------------------------------------------- /080_Structured_Search/45_filter_order.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/080_Structured_Search/45_filter_order.md -------------------------------------------------------------------------------- /100_Full_Text_Search/00_Intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/100_Full_Text_Search/00_Intro.md -------------------------------------------------------------------------------- /100_Full_Text_Search/05_Match_query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/100_Full_Text_Search/05_Match_query.md -------------------------------------------------------------------------------- /100_Full_Text_Search/10_Multi_word_queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/100_Full_Text_Search/10_Multi_word_queries.md -------------------------------------------------------------------------------- /100_Full_Text_Search/15_Combining_queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/100_Full_Text_Search/15_Combining_queries.md -------------------------------------------------------------------------------- /100_Full_Text_Search/20_How_match_uses_bool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/100_Full_Text_Search/20_How_match_uses_bool.md -------------------------------------------------------------------------------- /100_Full_Text_Search/25_Boosting_clauses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/100_Full_Text_Search/25_Boosting_clauses.md -------------------------------------------------------------------------------- /100_Full_Text_Search/30_Controlling_analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/100_Full_Text_Search/30_Controlling_analysis.md -------------------------------------------------------------------------------- /100_Full_Text_Search/35_Relevance_is_broken.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/100_Full_Text_Search/35_Relevance_is_broken.md -------------------------------------------------------------------------------- /110_Multi_Field_Search/00_Intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/110_Multi_Field_Search/00_Intro.md -------------------------------------------------------------------------------- /110_Multi_Field_Search/05_Multiple_query_strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/110_Multi_Field_Search/05_Multiple_query_strings.md -------------------------------------------------------------------------------- /110_Multi_Field_Search/10_Single_query_string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/110_Multi_Field_Search/10_Single_query_string.md -------------------------------------------------------------------------------- /110_Multi_Field_Search/15_Best_field.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/110_Multi_Field_Search/15_Best_field.md -------------------------------------------------------------------------------- /110_Multi_Field_Search/20_Tuning_best_field_queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/110_Multi_Field_Search/20_Tuning_best_field_queries.md -------------------------------------------------------------------------------- /110_Multi_Field_Search/25_Multi_match_query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/110_Multi_Field_Search/25_Multi_match_query.md -------------------------------------------------------------------------------- /110_Multi_Field_Search/30_Most_fields.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/110_Multi_Field_Search/30_Most_fields.md -------------------------------------------------------------------------------- /110_Multi_Field_Search/35_Entity_search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/110_Multi_Field_Search/35_Entity_search.md -------------------------------------------------------------------------------- /110_Multi_Field_Search/40_Field_centric.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/110_Multi_Field_Search/40_Field_centric.md -------------------------------------------------------------------------------- /110_Multi_Field_Search/45_Custom_all.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/110_Multi_Field_Search/45_Custom_all.md -------------------------------------------------------------------------------- /110_Multi_Field_Search/50_Cross_field.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/110_Multi_Field_Search/50_Cross_field.md -------------------------------------------------------------------------------- /110_Multi_Field_Search/55_Not_analyzed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/110_Multi_Field_Search/55_Not_analyzed.md -------------------------------------------------------------------------------- /120_Proximity_Matching/00_Intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/120_Proximity_Matching/00_Intro.md -------------------------------------------------------------------------------- /120_Proximity_Matching/05_Phrase_matching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/120_Proximity_Matching/05_Phrase_matching.md -------------------------------------------------------------------------------- /120_Proximity_Matching/10_Slop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/120_Proximity_Matching/10_Slop.md -------------------------------------------------------------------------------- /120_Proximity_Matching/15_Multi_value_fields.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/120_Proximity_Matching/15_Multi_value_fields.md -------------------------------------------------------------------------------- /120_Proximity_Matching/20_Scoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/120_Proximity_Matching/20_Scoring.md -------------------------------------------------------------------------------- /120_Proximity_Matching/25_Relevance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/120_Proximity_Matching/25_Relevance.md -------------------------------------------------------------------------------- /120_Proximity_Matching/30_Performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/120_Proximity_Matching/30_Performance.md -------------------------------------------------------------------------------- /120_Proximity_Matching/35_Shingles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/120_Proximity_Matching/35_Shingles.md -------------------------------------------------------------------------------- /130_Partial_Matching/00_Intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/130_Partial_Matching/00_Intro.md -------------------------------------------------------------------------------- /130_Partial_Matching/05_Postcodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/130_Partial_Matching/05_Postcodes.md -------------------------------------------------------------------------------- /130_Partial_Matching/10_Prefix_query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/130_Partial_Matching/10_Prefix_query.md -------------------------------------------------------------------------------- /130_Partial_Matching/15_WildcardRegexp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/130_Partial_Matching/15_WildcardRegexp.md -------------------------------------------------------------------------------- /130_Partial_Matching/20_Match_phrase_prefix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/130_Partial_Matching/20_Match_phrase_prefix.md -------------------------------------------------------------------------------- /130_Partial_Matching/25_Index_time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/130_Partial_Matching/25_Index_time.md -------------------------------------------------------------------------------- /130_Partial_Matching/30_Ngram_intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/130_Partial_Matching/30_Ngram_intro.md -------------------------------------------------------------------------------- /130_Partial_Matching/35_Search_as_you_type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/130_Partial_Matching/35_Search_as_you_type.md -------------------------------------------------------------------------------- /130_Partial_Matching/40_Compound_words.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/130_Partial_Matching/40_Compound_words.md -------------------------------------------------------------------------------- /170_Relevance/05_Intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/170_Relevance/05_Intro.md -------------------------------------------------------------------------------- /170_Relevance/10_Scoring_theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/170_Relevance/10_Scoring_theory.md -------------------------------------------------------------------------------- /170_Relevance/15_Practical_scoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/170_Relevance/15_Practical_scoring.md -------------------------------------------------------------------------------- /170_Relevance/20_Query_time_boosting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/170_Relevance/20_Query_time_boosting.md -------------------------------------------------------------------------------- /170_Relevance/25_Query_scoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/170_Relevance/25_Query_scoring.md -------------------------------------------------------------------------------- /170_Relevance/30_Not_quite_not.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/170_Relevance/30_Not_quite_not.md -------------------------------------------------------------------------------- /170_Relevance/35_Ignoring_TFIDF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/170_Relevance/35_Ignoring_TFIDF.md -------------------------------------------------------------------------------- /170_Relevance/40_Function_score_query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/170_Relevance/40_Function_score_query.md -------------------------------------------------------------------------------- /170_Relevance/45_Popularity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/170_Relevance/45_Popularity.md -------------------------------------------------------------------------------- /170_Relevance/50_Boosting_filtered_subsets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/170_Relevance/50_Boosting_filtered_subsets.md -------------------------------------------------------------------------------- /170_Relevance/55_Random_scoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/170_Relevance/55_Random_scoring.md -------------------------------------------------------------------------------- /170_Relevance/60_Decay_functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/170_Relevance/60_Decay_functions.md -------------------------------------------------------------------------------- /170_Relevance/65_Script_score.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/170_Relevance/65_Script_score.md -------------------------------------------------------------------------------- /170_Relevance/70_Pluggable_similarities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/170_Relevance/70_Pluggable_similarities.md -------------------------------------------------------------------------------- /170_Relevance/75_Changing_similarities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/170_Relevance/75_Changing_similarities.md -------------------------------------------------------------------------------- /170_Relevance/80_Conclusion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/170_Relevance/80_Conclusion.md -------------------------------------------------------------------------------- /200_Language_intro/00_Intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/200_Language_intro/00_Intro.md -------------------------------------------------------------------------------- /200_Language_intro/10_Using.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/200_Language_intro/10_Using.md -------------------------------------------------------------------------------- /200_Language_intro/20_Configuring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/200_Language_intro/20_Configuring.md -------------------------------------------------------------------------------- /200_Language_intro/30_Language_pitfalls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/200_Language_intro/30_Language_pitfalls.md -------------------------------------------------------------------------------- /200_Language_intro/40_One_language_per_doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/200_Language_intro/40_One_language_per_doc.md -------------------------------------------------------------------------------- /200_Language_intro/50_One_language_per_field.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/200_Language_intro/50_One_language_per_field.md -------------------------------------------------------------------------------- /200_Language_intro/60_Mixed_language_fields.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/200_Language_intro/60_Mixed_language_fields.md -------------------------------------------------------------------------------- /200_Language_intro/70_Conclusion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/200_Language_intro/70_Conclusion.md -------------------------------------------------------------------------------- /210_Identifying_words/00_Intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/210_Identifying_words/00_Intro.md -------------------------------------------------------------------------------- /210_Identifying_words/10_Standard_analyzer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/210_Identifying_words/10_Standard_analyzer.md -------------------------------------------------------------------------------- /210_Identifying_words/20_Standard_tokenizer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/210_Identifying_words/20_Standard_tokenizer.md -------------------------------------------------------------------------------- /210_Identifying_words/30_ICU_plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/210_Identifying_words/30_ICU_plugin.md -------------------------------------------------------------------------------- /210_Identifying_words/40_ICU_tokenizer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/210_Identifying_words/40_ICU_tokenizer.md -------------------------------------------------------------------------------- /210_Identifying_words/50_Tidying_text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/210_Identifying_words/50_Tidying_text.md -------------------------------------------------------------------------------- /220_Token_normalization/00_Intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/220_Token_normalization/00_Intro.md -------------------------------------------------------------------------------- /220_Token_normalization/10_Lowercasing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/220_Token_normalization/10_Lowercasing.md -------------------------------------------------------------------------------- /220_Token_normalization/20_Removing_diacritics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/220_Token_normalization/20_Removing_diacritics.md -------------------------------------------------------------------------------- /220_Token_normalization/30_Unicode_world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/220_Token_normalization/30_Unicode_world.md -------------------------------------------------------------------------------- /220_Token_normalization/40_Case_folding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/220_Token_normalization/40_Case_folding.md -------------------------------------------------------------------------------- /220_Token_normalization/50_Character_folding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/220_Token_normalization/50_Character_folding.md -------------------------------------------------------------------------------- /220_Token_normalization/60_Sorting_and_collations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/220_Token_normalization/60_Sorting_and_collations.md -------------------------------------------------------------------------------- /230_Stemming/00_Intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/230_Stemming/00_Intro.md -------------------------------------------------------------------------------- /230_Stemming/10_Algorithmic_stemmers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/230_Stemming/10_Algorithmic_stemmers.md -------------------------------------------------------------------------------- /230_Stemming/20_Dictionary_stemmers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/230_Stemming/20_Dictionary_stemmers.md -------------------------------------------------------------------------------- /230_Stemming/30_Hunspell_stemmer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/230_Stemming/30_Hunspell_stemmer.md -------------------------------------------------------------------------------- /230_Stemming/40_Choosing_a_stemmer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/230_Stemming/40_Choosing_a_stemmer.md -------------------------------------------------------------------------------- /230_Stemming/50_Controlling_stemming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/230_Stemming/50_Controlling_stemming.md -------------------------------------------------------------------------------- /230_Stemming/60_Stemming_in_situ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/230_Stemming/60_Stemming_in_situ.md -------------------------------------------------------------------------------- /240_Stopwords/10_Intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/240_Stopwords/10_Intro.md -------------------------------------------------------------------------------- /240_Stopwords/20_Using_stopwords.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/240_Stopwords/20_Using_stopwords.md -------------------------------------------------------------------------------- /240_Stopwords/30_Stopwords_and_performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/240_Stopwords/30_Stopwords_and_performance.md -------------------------------------------------------------------------------- /240_Stopwords/40_Divide_and_conquer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/240_Stopwords/40_Divide_and_conquer.md -------------------------------------------------------------------------------- /240_Stopwords/50_Phrase_queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/240_Stopwords/50_Phrase_queries.md -------------------------------------------------------------------------------- /240_Stopwords/60_Common_grams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/240_Stopwords/60_Common_grams.md -------------------------------------------------------------------------------- /240_Stopwords/70_Relevance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/240_Stopwords/70_Relevance.md -------------------------------------------------------------------------------- /260_Synonyms/10_Intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/260_Synonyms/10_Intro.md -------------------------------------------------------------------------------- /260_Synonyms/20_Using_synonyms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/260_Synonyms/20_Using_synonyms.md -------------------------------------------------------------------------------- /260_Synonyms/30_Synonym_formats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/260_Synonyms/30_Synonym_formats.md -------------------------------------------------------------------------------- /260_Synonyms/40_Expand_contract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/260_Synonyms/40_Expand_contract.md -------------------------------------------------------------------------------- /260_Synonyms/50_Analysis_chain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/260_Synonyms/50_Analysis_chain.md -------------------------------------------------------------------------------- /260_Synonyms/60_Multi_word_synonyms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/260_Synonyms/60_Multi_word_synonyms.md -------------------------------------------------------------------------------- /260_Synonyms/70_Symbol_synonyms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/260_Synonyms/70_Symbol_synonyms.md -------------------------------------------------------------------------------- /270_Fuzzy_matching/10_Intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/270_Fuzzy_matching/10_Intro.md -------------------------------------------------------------------------------- /270_Fuzzy_matching/20_Fuzziness.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/270_Fuzzy_matching/20_Fuzziness.md -------------------------------------------------------------------------------- /270_Fuzzy_matching/30_Fuzzy_query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/270_Fuzzy_matching/30_Fuzzy_query.md -------------------------------------------------------------------------------- /270_Fuzzy_matching/40_Fuzzy_match_query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/270_Fuzzy_matching/40_Fuzzy_match_query.md -------------------------------------------------------------------------------- /270_Fuzzy_matching/50_Scoring_fuzziness.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/270_Fuzzy_matching/50_Scoring_fuzziness.md -------------------------------------------------------------------------------- /270_Fuzzy_matching/60_Phonetic_matching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/270_Fuzzy_matching/60_Phonetic_matching.md -------------------------------------------------------------------------------- /300_Aggregations/05_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/300_Aggregations/05_overview.md -------------------------------------------------------------------------------- /300_Aggregations/100_circuit_breaker_fd_settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/300_Aggregations/100_circuit_breaker_fd_settings.md -------------------------------------------------------------------------------- /300_Aggregations/105_filtering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/300_Aggregations/105_filtering.md -------------------------------------------------------------------------------- /300_Aggregations/10_facets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/300_Aggregations/10_facets.md -------------------------------------------------------------------------------- /300_Aggregations/110_docvalues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/300_Aggregations/110_docvalues.md -------------------------------------------------------------------------------- /300_Aggregations/115_eager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/300_Aggregations/115_eager.md -------------------------------------------------------------------------------- /300_Aggregations/120_breadth_vs_depth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/300_Aggregations/120_breadth_vs_depth.md -------------------------------------------------------------------------------- /300_Aggregations/125_Conclusion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/300_Aggregations/125_Conclusion.md -------------------------------------------------------------------------------- /300_Aggregations/15_concepts_buckets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/300_Aggregations/15_concepts_buckets.md -------------------------------------------------------------------------------- /300_Aggregations/20_basic_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/300_Aggregations/20_basic_example.md -------------------------------------------------------------------------------- /300_Aggregations/21_add_metric.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/300_Aggregations/21_add_metric.md -------------------------------------------------------------------------------- /300_Aggregations/22_nested_bucket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/300_Aggregations/22_nested_bucket.md -------------------------------------------------------------------------------- /300_Aggregations/23_extra_metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/300_Aggregations/23_extra_metrics.md -------------------------------------------------------------------------------- /300_Aggregations/28_bucket_metric_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/300_Aggregations/28_bucket_metric_list.md -------------------------------------------------------------------------------- /300_Aggregations/30_histogram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/300_Aggregations/30_histogram.md -------------------------------------------------------------------------------- /300_Aggregations/35_date_histogram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/300_Aggregations/35_date_histogram.md -------------------------------------------------------------------------------- /300_Aggregations/40_scope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/300_Aggregations/40_scope.md -------------------------------------------------------------------------------- /300_Aggregations/45_filtering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/300_Aggregations/45_filtering.md -------------------------------------------------------------------------------- /300_Aggregations/50_sorting_ordering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/300_Aggregations/50_sorting_ordering.md -------------------------------------------------------------------------------- /300_Aggregations/55_approx_intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/300_Aggregations/55_approx_intro.md -------------------------------------------------------------------------------- /300_Aggregations/60_cardinality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/300_Aggregations/60_cardinality.md -------------------------------------------------------------------------------- /300_Aggregations/65_percentiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/300_Aggregations/65_percentiles.md -------------------------------------------------------------------------------- /300_Aggregations/70_sigterms_intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/300_Aggregations/70_sigterms_intro.md -------------------------------------------------------------------------------- /300_Aggregations/75_sigterms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/300_Aggregations/75_sigterms.md -------------------------------------------------------------------------------- /300_Aggregations/90_fielddata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/300_Aggregations/90_fielddata.md -------------------------------------------------------------------------------- /300_Aggregations/95_analyzed_vs_not.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/300_Aggregations/95_analyzed_vs_not.md -------------------------------------------------------------------------------- /310_Geopoints/00_Intro.md: -------------------------------------------------------------------------------- 1 | ## 地理坐标点 -------------------------------------------------------------------------------- /310_Geopoints/20_Geopoints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/310_Geopoints/20_Geopoints.md -------------------------------------------------------------------------------- /310_Geopoints/30_Filter_by_geopoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/310_Geopoints/30_Filter_by_geopoint.md -------------------------------------------------------------------------------- /310_Geopoints/32_Bounding_box.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/310_Geopoints/32_Bounding_box.md -------------------------------------------------------------------------------- /310_Geopoints/34_Geo_distance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/310_Geopoints/34_Geo_distance.md -------------------------------------------------------------------------------- /310_Geopoints/36_Caching_geofilters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/310_Geopoints/36_Caching_geofilters.md -------------------------------------------------------------------------------- /310_Geopoints/38_Reducing_memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/310_Geopoints/38_Reducing_memory.md -------------------------------------------------------------------------------- /310_Geopoints/50_Sorting_by_distance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/310_Geopoints/50_Sorting_by_distance.md -------------------------------------------------------------------------------- /320_Geohashes/00_Intro.md: -------------------------------------------------------------------------------- 1 | ## Geohashes -------------------------------------------------------------------------------- /320_Geohashes/40_Geohashes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/320_Geohashes/40_Geohashes.md -------------------------------------------------------------------------------- /320_Geohashes/50_Geohash_mapping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/320_Geohashes/50_Geohash_mapping.md -------------------------------------------------------------------------------- /320_Geohashes/60_Geohash_cell_filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/320_Geohashes/60_Geohash_cell_filter.md -------------------------------------------------------------------------------- /330_Geo_aggs/00_Intro.md: -------------------------------------------------------------------------------- 1 | ## 地理位置聚合 -------------------------------------------------------------------------------- /330_Geo_aggs/60_Geo_aggs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/330_Geo_aggs/60_Geo_aggs.md -------------------------------------------------------------------------------- /330_Geo_aggs/62_Geo_distance_agg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/330_Geo_aggs/62_Geo_distance_agg.md -------------------------------------------------------------------------------- /330_Geo_aggs/64_Geohash_grid_agg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/330_Geo_aggs/64_Geohash_grid_agg.md -------------------------------------------------------------------------------- /330_Geo_aggs/66_Geo_bounds_agg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/330_Geo_aggs/66_Geo_bounds_agg.md -------------------------------------------------------------------------------- /340_Geoshapes/00_Intro.md: -------------------------------------------------------------------------------- 1 | ## 地理形状 -------------------------------------------------------------------------------- /340_Geoshapes/70_Geoshapes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/340_Geoshapes/70_Geoshapes.md -------------------------------------------------------------------------------- /340_Geoshapes/72_Mapping_geo_shapes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/340_Geoshapes/72_Mapping_geo_shapes.md -------------------------------------------------------------------------------- /340_Geoshapes/74_Indexing_geo_shapes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/340_Geoshapes/74_Indexing_geo_shapes.md -------------------------------------------------------------------------------- /340_Geoshapes/76_Querying_geo_shapes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/340_Geoshapes/76_Querying_geo_shapes.md -------------------------------------------------------------------------------- /340_Geoshapes/78_Indexed_geo_shapes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/340_Geoshapes/78_Indexed_geo_shapes.md -------------------------------------------------------------------------------- /340_Geoshapes/80_Caching_geo_shapes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/340_Geoshapes/80_Caching_geo_shapes.md -------------------------------------------------------------------------------- /400_Relationships/10_Intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/400_Relationships/10_Intro.md -------------------------------------------------------------------------------- /400_Relationships/15_Application_joins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/400_Relationships/15_Application_joins.md -------------------------------------------------------------------------------- /400_Relationships/20_Denormalization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/400_Relationships/20_Denormalization.md -------------------------------------------------------------------------------- /400_Relationships/22_Top_hits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/400_Relationships/22_Top_hits.md -------------------------------------------------------------------------------- /400_Relationships/25_Concurrency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/400_Relationships/25_Concurrency.md -------------------------------------------------------------------------------- /400_Relationships/26_Concurrency_solutions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/400_Relationships/26_Concurrency_solutions.md -------------------------------------------------------------------------------- /402_Nested/00_Intro.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /402_Nested/30_Nested_objects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/402_Nested/30_Nested_objects.md -------------------------------------------------------------------------------- /402_Nested/31_Nested_mapping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/402_Nested/31_Nested_mapping.md -------------------------------------------------------------------------------- /402_Nested/32_Nested_query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/402_Nested/32_Nested_query.md -------------------------------------------------------------------------------- /402_Nested/33_Nested_sorting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/402_Nested/33_Nested_sorting.md -------------------------------------------------------------------------------- /402_Nested/35_Nested_aggs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/402_Nested/35_Nested_aggs.md -------------------------------------------------------------------------------- /404_Parent_Child/00_Intro.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /404_Parent_Child/40_Parent_child.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/404_Parent_Child/40_Parent_child.md -------------------------------------------------------------------------------- /404_Parent_Child/45_Indexing_parent_child.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/404_Parent_Child/45_Indexing_parent_child.md -------------------------------------------------------------------------------- /404_Parent_Child/50_Has_child.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/404_Parent_Child/50_Has_child.md -------------------------------------------------------------------------------- /404_Parent_Child/55_Has_parent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/404_Parent_Child/55_Has_parent.md -------------------------------------------------------------------------------- /404_Parent_Child/60_Children_agg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/404_Parent_Child/60_Children_agg.md -------------------------------------------------------------------------------- /404_Parent_Child/65_Grandparents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/404_Parent_Child/65_Grandparents.md -------------------------------------------------------------------------------- /404_Parent_Child/70_Practical_considerations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/404_Parent_Child/70_Practical_considerations.md -------------------------------------------------------------------------------- /410_Scaling/10_Intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/410_Scaling/10_Intro.md -------------------------------------------------------------------------------- /410_Scaling/15_Shard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/410_Scaling/15_Shard.md -------------------------------------------------------------------------------- /410_Scaling/20_Overallocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/410_Scaling/20_Overallocation.md -------------------------------------------------------------------------------- /410_Scaling/25_Kagillion_shards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/410_Scaling/25_Kagillion_shards.md -------------------------------------------------------------------------------- /410_Scaling/30_Capacity_planning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/410_Scaling/30_Capacity_planning.md -------------------------------------------------------------------------------- /410_Scaling/35_Replica_shards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/410_Scaling/35_Replica_shards.md -------------------------------------------------------------------------------- /410_Scaling/40_Multiple_indices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/410_Scaling/40_Multiple_indices.md -------------------------------------------------------------------------------- /410_Scaling/45_Index_per_timeframe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/410_Scaling/45_Index_per_timeframe.md -------------------------------------------------------------------------------- /410_Scaling/50_Index_templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/410_Scaling/50_Index_templates.md -------------------------------------------------------------------------------- /410_Scaling/55_Retiring_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/410_Scaling/55_Retiring_data.md -------------------------------------------------------------------------------- /410_Scaling/60_Index_per_user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/410_Scaling/60_Index_per_user.md -------------------------------------------------------------------------------- /410_Scaling/65_Shared_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/410_Scaling/65_Shared_index.md -------------------------------------------------------------------------------- /410_Scaling/70_Faking_it.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/410_Scaling/70_Faking_it.md -------------------------------------------------------------------------------- /410_Scaling/75_One_big_user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/410_Scaling/75_One_big_user.md -------------------------------------------------------------------------------- /410_Scaling/80_Scale_is_not_infinite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/410_Scaling/80_Scale_is_not_infinite.md -------------------------------------------------------------------------------- /500_Cluster_Admin/10_intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/500_Cluster_Admin/10_intro.md -------------------------------------------------------------------------------- /500_Cluster_Admin/15_marvel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/500_Cluster_Admin/15_marvel.md -------------------------------------------------------------------------------- /500_Cluster_Admin/20_health.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/500_Cluster_Admin/20_health.md -------------------------------------------------------------------------------- /500_Cluster_Admin/30_node_stats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/500_Cluster_Admin/30_node_stats.md -------------------------------------------------------------------------------- /500_Cluster_Admin/40_other_stats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/500_Cluster_Admin/40_other_stats.md -------------------------------------------------------------------------------- /510_Deployment/10_intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/510_Deployment/10_intro.md -------------------------------------------------------------------------------- /510_Deployment/20_hardware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/510_Deployment/20_hardware.md -------------------------------------------------------------------------------- /510_Deployment/30_other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/510_Deployment/30_other.md -------------------------------------------------------------------------------- /510_Deployment/40_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/510_Deployment/40_config.md -------------------------------------------------------------------------------- /510_Deployment/45_dont_touch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/510_Deployment/45_dont_touch.md -------------------------------------------------------------------------------- /510_Deployment/50_heap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/510_Deployment/50_heap.md -------------------------------------------------------------------------------- /510_Deployment/60_file_descriptors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/510_Deployment/60_file_descriptors.md -------------------------------------------------------------------------------- /510_Deployment/70_conclusion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/510_Deployment/70_conclusion.md -------------------------------------------------------------------------------- /510_Deployment/80_cluster_settings.md: -------------------------------------------------------------------------------- 1 | 2 | === -------------------------------------------------------------------------------- /520_Post_Deployment/00_Intro.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /520_Post_Deployment/10_dynamic_settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/520_Post_Deployment/10_dynamic_settings.md -------------------------------------------------------------------------------- /520_Post_Deployment/20_logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/520_Post_Deployment/20_logging.md -------------------------------------------------------------------------------- /520_Post_Deployment/30_indexing_perf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/520_Post_Deployment/30_indexing_perf.md -------------------------------------------------------------------------------- /520_Post_Deployment/40_rolling_restart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/520_Post_Deployment/40_rolling_restart.md -------------------------------------------------------------------------------- /520_Post_Deployment/50_backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/520_Post_Deployment/50_backup.md -------------------------------------------------------------------------------- /520_Post_Deployment/60_restore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/520_Post_Deployment/60_restore.md -------------------------------------------------------------------------------- /520_Post_Deployment/70_conclusion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/520_Post_Deployment/70_conclusion.md -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/Changelog.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/README.md -------------------------------------------------------------------------------- /README_Wiki.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/README_Wiki.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /TOC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/TOC.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/config.json -------------------------------------------------------------------------------- /cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/cover.jpg -------------------------------------------------------------------------------- /cover.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/cover.psd -------------------------------------------------------------------------------- /cover/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/cover/background.jpg -------------------------------------------------------------------------------- /cover/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/cover/logo.png -------------------------------------------------------------------------------- /cover_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/cover_small.jpg -------------------------------------------------------------------------------- /images/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/cover.png -------------------------------------------------------------------------------- /images/elas_0201.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_0201.png -------------------------------------------------------------------------------- /images/elas_0202.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_0202.png -------------------------------------------------------------------------------- /images/elas_0203.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_0203.png -------------------------------------------------------------------------------- /images/elas_0204.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_0204.png -------------------------------------------------------------------------------- /images/elas_0205.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_0205.png -------------------------------------------------------------------------------- /images/elas_0206.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_0206.png -------------------------------------------------------------------------------- /images/elas_0301.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_0301.png -------------------------------------------------------------------------------- /images/elas_0401.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_0401.png -------------------------------------------------------------------------------- /images/elas_0402.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_0402.png -------------------------------------------------------------------------------- /images/elas_0403.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_0403.png -------------------------------------------------------------------------------- /images/elas_0404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_0404.png -------------------------------------------------------------------------------- /images/elas_0405.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_0405.png -------------------------------------------------------------------------------- /images/elas_0406.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_0406.png -------------------------------------------------------------------------------- /images/elas_0901.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_0901.png -------------------------------------------------------------------------------- /images/elas_0902.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_0902.png -------------------------------------------------------------------------------- /images/elas_1101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_1101.png -------------------------------------------------------------------------------- /images/elas_1102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_1102.png -------------------------------------------------------------------------------- /images/elas_1103.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_1103.png -------------------------------------------------------------------------------- /images/elas_1104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_1104.png -------------------------------------------------------------------------------- /images/elas_1105.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_1105.png -------------------------------------------------------------------------------- /images/elas_1106.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_1106.png -------------------------------------------------------------------------------- /images/elas_1107.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_1107.png -------------------------------------------------------------------------------- /images/elas_1108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_1108.png -------------------------------------------------------------------------------- /images/elas_1109.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_1109.png -------------------------------------------------------------------------------- /images/elas_1110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_1110.png -------------------------------------------------------------------------------- /images/elas_1111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_1111.png -------------------------------------------------------------------------------- /images/elas_1701.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_1701.png -------------------------------------------------------------------------------- /images/elas_1702.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_1702.png -------------------------------------------------------------------------------- /images/elas_1703.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_1703.png -------------------------------------------------------------------------------- /images/elas_1704.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_1704.png -------------------------------------------------------------------------------- /images/elas_1705.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_1705.png -------------------------------------------------------------------------------- /images/elas_1706.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_1706.png -------------------------------------------------------------------------------- /images/elas_17in01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_17in01.png -------------------------------------------------------------------------------- /images/elas_17in02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_17in02.png -------------------------------------------------------------------------------- /images/elas_28in01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_28in01.png -------------------------------------------------------------------------------- /images/elas_28in02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_28in02.png -------------------------------------------------------------------------------- /images/elas_29in01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_29in01.png -------------------------------------------------------------------------------- /images/elas_29in02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_29in02.png -------------------------------------------------------------------------------- /images/elas_29in03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_29in03.png -------------------------------------------------------------------------------- /images/elas_33in01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_33in01.png -------------------------------------------------------------------------------- /images/elas_33in02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_33in02.png -------------------------------------------------------------------------------- /images/elas_4401.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_4401.png -------------------------------------------------------------------------------- /images/elas_4402.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_4402.png -------------------------------------------------------------------------------- /images/elas_4403.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_4403.png -------------------------------------------------------------------------------- /images/elas_4404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/images/elas_4404.png -------------------------------------------------------------------------------- /push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/push.sh -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/looly/elasticsearch-definitive-guide-cn/HEAD/update.sh --------------------------------------------------------------------------------