Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id C6183200C5D for ; Fri, 7 Apr 2017 17:16:45 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id C4B09160B97; Fri, 7 Apr 2017 15:16:45 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 17AB7160B93 for ; Fri, 7 Apr 2017 17:16:44 +0200 (CEST) Received: (qmail 33406 invoked by uid 500); 7 Apr 2017 15:16:44 -0000 Mailing-List: contact dev-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@lucene.apache.org Delivered-To: mailing list dev@lucene.apache.org Received: (qmail 33395 invoked by uid 99); 7 Apr 2017 15:16:44 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 07 Apr 2017 15:16:44 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id A5198C047D for ; Fri, 7 Apr 2017 15:16:43 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -100.002 X-Spam-Level: X-Spam-Status: No, score=-100.002 tagged_above=-999 required=6.31 tests=[RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id tjwJlSCZHILT for ; Fri, 7 Apr 2017 15:16:43 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with ESMTP id 6CC985F4AC for ; Fri, 7 Apr 2017 15:16:42 +0000 (UTC) Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id C9B61E0629 for ; Fri, 7 Apr 2017 15:16:41 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id 7FF4924065 for ; Fri, 7 Apr 2017 15:16:41 +0000 (UTC) Date: Fri, 7 Apr 2017 15:16:41 +0000 (UTC) From: "Alessandro Benedetti (JIRA)" To: dev@lucene.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (SOLR-10448) [LTR] Feature vector caching separation MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Fri, 07 Apr 2017 15:16:46 -0000 Alessandro Benedetti created SOLR-10448: ------------------------------------------- Summary: [LTR] Feature vector caching separation Key: SOLR-10448 URL: https://issues.apache.org/jira/browse/SOLR-10448 Project: Solr Issue Type: Improvement Security Level: Public (Default Security Level. Issues are Public) Reporter: Alessandro Benedetti Priority: Minor We have different type of features, and their nature is different : SolrFeature -> can be query dependent / query independent FieldValueFeature -> query independent Value Feature -> query level OriginalScoreFeature - > query dependent Intuition Let's see when the extracted value for a feature change : Query independent ( document level features) -> indexing time, every commit may change the feature value and possibly invaldiate the cache entry query dependent -> both request parameters and index can change the feature value query level -> only request parameters can change the value, it is not affected by the index Caching let's see the benefits of having 3 separate caches ( so the feature vector components will be separated) : Query independent feature Cache -> simply changing the request parameters will not invalidate the cache entry, only a commit will cause the autowarming Query Dependent Feature Cache -> this will behave like the current cache, so changing params you will cache a different feature vector Query level Cache ->the index is not involved at all I have not yet investigated how caching internally works in the LTR plugin so i don't know how much effort would imply. -- This message was sent by Atlassian JIRA (v6.3.15#6346) --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org For additional commands, e-mail: dev-help@lucene.apache.org