當前位置: 首頁>>代碼示例>>C#>>正文


C# ConnectionSettings.MapDefaultTypeIndices方法代碼示例

本文整理匯總了C#中Nest.ConnectionSettings.MapDefaultTypeIndices方法的典型用法代碼示例。如果您正苦於以下問題:C# ConnectionSettings.MapDefaultTypeIndices方法的具體用法?C# ConnectionSettings.MapDefaultTypeIndices怎麽用?C# ConnectionSettings.MapDefaultTypeIndices使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Nest.ConnectionSettings的用法示例。


在下文中一共展示了ConnectionSettings.MapDefaultTypeIndices方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: ElasticMetricWriter

        public ElasticMetricWriter(string elasticSearchEndpoint)
        {
            var node = new Uri(elasticSearchEndpoint);
            var settings = new ConnectionSettings(node);

            settings.MapDefaultTypeIndices(d => d.Add(typeof(Metric), "durrylights"));

            _elasticClient = new ElasticClient(settings);
        }
開發者ID:photomoose,項目名稱:xmas-leds,代碼行數:9,代碼來源:ElasticMetricWriter.cs

示例2: SearchRepository

        public SearchRepository(IOptions<ApplicationConfiguration> o)
        {
            _optionsApplicationConfiguration = o;
            var uri = new Uri(_optionsApplicationConfiguration.Value.ElasticsearchConnectionString);
            var settings = new ConnectionSettings( uri,  defaultIndex: "coolsearchengine");
            settings.MapDefaultTypeIndices(d => d.Add(typeof(AlarmMessage), INDEX_ALARMMESSAGE));
            settings.MapDefaultTypeNames(d => d.Add(typeof(AlarmMessage), TYPE_ALARMMESSAGE));

            client = new ElasticClient(settings);
        }
開發者ID:freemsly,項目名稱:AspNet5Watcher,代碼行數:10,代碼來源:SearchRepository.cs

示例3: SearchRepository

        public SearchRepository(IConfiguration configuration)
        {           
            var node = new Uri(configuration.Get("Development:ElasticsearchConnectionString"));

            var settings = new ConnectionSettings( node,  defaultIndex: "coolsearchengine");
            settings.MapDefaultTypeIndices(d => d.Add(typeof(AlarmMessage), INDEX_ALARMMESSAGE));
            settings.MapDefaultTypeNames(d => d.Add(typeof(AlarmMessage), TYPE_ALARMMESSAGE));

            client = new ElasticClient(settings);
        }
開發者ID:dVakulen,項目名稱:AspNet5Watcher,代碼行數:10,代碼來源:SearchRepository.cs

示例4: GetElasticClient

        private static IElasticClient GetElasticClient(Uri serverUri, bool deleteExistingIndexes = false) {
            var settings = new ConnectionSettings(serverUri).SetDefaultIndex("_all");
            settings.EnableMetrics();
            settings.SetJsonSerializerSettingsModifier(s => {
                s.ContractResolver = new EmptyCollectionElasticContractResolver(settings);
                s.AddModelConverters();
            });
            settings.MapDefaultTypeNames(m => m.Add(typeof(PersistentEvent), "events").Add(typeof(Stack), "stacks"));
            settings.MapDefaultTypeIndices(m => m.Add(typeof(Stack), ElasticSearchRepository<Stack>.StacksIndexName));
            settings.MapDefaultTypeIndices(m => m.Add(typeof(PersistentEvent), ElasticSearchRepository<PersistentEvent>.EventsIndexName + "-*"));
            settings.SetDefaultPropertyNameInferrer(p => p.ToLowerUnderscoredWords());

            var client = new ElasticClient(settings);
            ConfigureMapping(client, deleteExistingIndexes);

            return client;
        }
開發者ID:WSmartJ18,項目名稱:Exceptionless,代碼行數:17,代碼來源:Bootstrapper.cs


注:本文中的Nest.ConnectionSettings.MapDefaultTypeIndices方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。