nest

    0熱度

    1回答

    我使用Elastisearch.NET和NEST 2.3。我想使用屬性映射,但我只想索引某些屬性。據我瞭解,除非你忽略它們,例如[String(Ignore = true)],所有的屬性都被編入索引。默認情況下可以忽略所有屬性,只索引那些附加了nest屬性的屬性?像JSON.NETs MemberSerialization.OptIn

    0熱度

    1回答

    存儲的實際內容,我使用elasticsearch .NET NEST庫索引數據和文件內容。 我用mapper-attachchement來索引文件內容。 彈性搜索將文件內容存儲在base64 encoaded中。 我已經有文件存儲在文件系統上,所以我不想elasticsearch再次存儲。 是否有可能索引文件的內容而實際上不存儲文件的內容,使用的.Net窩。 我的嘗試: 試圖設置 [Elastic

    0熱度

    1回答

    有了Nest 5,我試圖做一個查詢請求,並就結果使聚合: 在elasticsearch這將是該類型的請求: POST /index/mappingname/_search { "query": { "match": { "street": "wellington" } }, "aggs" : { "agg_name"

    0熱度

    1回答

    我需要一些幫助與C#NEST我想現在算出這個數天: 情況: 我有一個查詢,還給多種類型的文件,我已經進行了彙總,以列出具有相應doc_counts的所有類型。因此,對於即時類型的Ticket,在此搜索操作中有299張門票。 現在我需要獲取數據,根據文件,我需要做到以下幾點:(https://www.elastic.co/guide/en/elasticsearch/client/net-api/c

    2熱度

    1回答

    我在ElasticSearch中的字段屬性有點掙扎,特別是因爲事情已經改變了一點點5.x(我移植我們的代碼)。 一個例子是這樣的: [Text(Index = false)] public string Id { get; set; } [Keyword] public string Tags { get; set; } [Text]

    0熱度

    1回答

    鑑於本文檔中的ES 1.7 { "_index": "prod", "_type": "customerpropertieses", "_id": "215c4bd7-7611-4c6a-8681-ef3b318613a0", "_source": { "properties": [ {

    0熱度

    1回答

    我嘗試建立一個必須在elasticsearch請求和應要求 我的目標要求是這樣的波紋管: POST /index/type/_search { "query": { "bool" : { "must" : { "match":{"field1":{"query":"word1"}} }, "should":{ "ma

    0熱度

    1回答

    我在應用程序中使用Elasticsearch.Net和NEST並且在基於嵌套對象ID搜索時無法訪問Elasticsearh索引中的文檔。數據結構是發票 - > lineItems - > rowItems。我想根據這些rowItems Id進行搜索。該指數的(簡化)的映射是: "invoice": { "properties": { "lineItems": {

    1熱度

    1回答

    我在我的Web Api項目中使用NEST進行按GeoDistance排序時遇到了問題。 我: 服務器Elasticsearch V5.1.1(工作好)巢V5.0.1安裝(基本CRUD和 搜索行動正在好) 簡單的.NET Web API應用程序 昨天我決定實施由地表距離排序,但是所有可能的解決方案我已經使我這個例外在搜索/排序要求: Invalid NEST response built from

    1熱度

    1回答

    我想阻止使用Nest屬性進行搜索的索引Id字段。 [Number(type: NumberType.Long, IncludeInAll = false, Index = false)] public long Id { get; set; }