Hi Folks!
I had one task with csv parsing and transforming. Main file contains approximately 100k of nodes. Transformation process should be in memory only, and I thought, that in-memory temporary index would be useful for this type of tasks.
Useful scenario
copy $clone := $csvContent modify ( tmp:optimize($clone), ... ) return $clone
Main goal - increase performance with huge document fragments, modified and changed on-fly.
Is it possible?