Skip to content

Commit

Permalink
Update faq.md for #449
Browse files Browse the repository at this point in the history
  • Loading branch information
slorello89 committed May 2, 2024
1 parent 1b511ef commit ec3715f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
* **Does Apply support String interpolation?** Not yet; rather than using string interpolation, you'll need to use `string.Format`
* **Do bitwise operations work for apply?** No - the Bitwise XOR operator `^` indicates an exponential relationship between the operands
* **When the Aggregation materializes, there's nothing in the `RecordShell` object. What gives?** The `RecordShell` item is used to preserve the original index through the aggregation pipeline and should only be used for operations within the pipeline. It will never materialize when the pipeline is enumerated
* **Why Do some Reductive aggregations condense down to a single number while others condense down to an IEnumerable?** When you build your pipeline, if you have a reductive aggregation not associated with a group, the aggregation is run immediately. The result of that reduction is furnished to you immediately for use.
* **Why Do some Reductive aggregations condense down to a single number while others condense down to an IEnumerable?** When you build your pipeline, if you have a reductive aggregation not associated with a group, the aggregation is run immediately. The result of that reduction is furnished to you immediately for use.
* **Is the `RedisCollection` thread safe?** - The `RedisCollection` is only thread safe when initalized with the `saveState` option set to false. e.g. `var collection = provider.RedisCollection<Customer>(false);`

0 comments on commit ec3715f

Please sign in to comment.