本文整理汇总了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);
}
示例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);
}
示例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);
}
示例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;
}