c# - RavenDB indices chains -
is possible use output of 1 index input another?
something like:
public class chainedindex: abstractindexcreationtask<inputindex, inputindexoutputtype, reduceresult> { //blahblahblah }
yes. can this.
- enable scripted index results bundle
- write first index, example - map/reduce index.
- write script writes result document.
- write new index against documents.
as changes original documents indexed, resulting changes written new documents, indexed. repeat if desired, careful not create endless loop.
this new feature ravendb 2.5. oren describes in this video @ 21:36.
Comments
Post a Comment