本文整理匯總了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;
}