On Wed, Jun 18, 2014 at 10:15 PM, Wietse Venema <[email protected]> wrote:
> Each "pipeline:" query is given to the first table. Each table
> lookup result becomes the query for the next table in the pipeline,
> and the last table produces the final result. When any table lookup
> produces no result, the entire pipeline produces no result.
That's great!
Right now I can think a couple weird tricks i have to use on LDAP
lookups that can be simplified with this.
Can you consider a similar behavior to allow caching.
Something like:
if ( value = get_table1 () ) {
return value
} else {
value = get_table2();
set_table1(value,ttl);
return value
}
> Some future version may support the form pipeline:/path/to/file,
> to load the list of lookup tables, one per line, from a textfile.
Probably need that to allow my previous paragraph.
José Borges Ferreira