: reference to a few "special" values, such as "id" and "score". Neither
: of them are technically "stored" fields either, but afaik you dont need
: to use "field(id), field(score)" for those. Can you honestly say that
: is consistent?
Nope.
I wasn't defending the quirks of the API, or tryi
Chris, the confusion from my perspective is the general inconsistency and
natural growth of the API which is somewhat expected based upon its history.
Obviously this isnt sql, there is no ansi body defining the query language. I
understand well the difference between stored, indexed etc.
Goin
: Yes that worked, thanks Alan. The consistency of this api is "challenging".
It's important to understand what's happening here.
fl, by default, only returns "stored" fields -- but you can also request
"psuedo-fields" such as the results of functions, or the result of a "Doc
Transformer" ...
Yes that worked, thanks Alan. The consistency of this api is "challenging".
C
On Jul 14, 2013, at 11:03 AM, Alan Woodward wrote:
> Hi Chris,
>
> Try wrapping the field name in a field() function in your fl parameter list,
> like so:
> fl=field(eff_field_name)
>
> Alan Woodward
> www.flax.co.
Hi Chris,
Try wrapping the field name in a field() function in your fl parameter list,
like so:
fl=field(eff_field_name)
Alan Woodward
www.flax.co.uk
On 14 Jul 2013, at 18:41, Chris Collins wrote:
> Why would I be re-indexing an external file field? The whole purpose is that
> its brought in
Why would I be re-indexing an external file field? The whole purpose is that
its brought in at runtime and not part of the index?
C
On Jul 14, 2013, at 10:13 AM, Shawn Heisey wrote:
> On 7/14/2013 7:05 AM, Chris Collins wrote:
>> Yep I did switch on stored=true in the field type. I was able to
On 7/14/2013 7:05 AM, Chris Collins wrote:
> Yep I did switch on stored=true in the field type. I was able to confirm a
> few ways that there are values for the eff by two methods:
>
> 1) changing desc to asc produced drastically different results.
>
> 2) debugging FileFloatSource the following
Yep I did switch on stored=true in the field type. I was able to confirm a few
ways that there are values for the eff by two methods:
1) changing desc to asc produced drastically different results.
2) debugging FileFloatSource the following was getting triggered filling the
vals array:
Did you store the field? I.e. set stored="true"? And does the EFF contain
values for the docs you're returning?
Best
Erick
On Sun, Jul 14, 2013 at 3:32 AM, Chris Collins wrote:
> I am playing with external file field for sorting. I created a dynamic field
> using the ExternalFileField type.
>