当前位置: 首页>>代码示例>>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;未经允许,请勿转载。