You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One of my bottle-necks here (in the range of 100.000 elements in a collection) is applying the grouping, sorting, and in particular filtering blocks. As far as I can see we're only using one thread here, I wonder whether it would be possible to distribute that workload.
Applying a filtering block to one key, element, and/or metadata has no effects whatsoever on other filter blocks, hence I would think they could run in parallel.
Is this something to pursue further or not an issue at all for you guys?
The text was updated successfully, but these errors were encountered:
I'm not sure I fully understand how vectors work in this case. We can convert this to use - [NSArray enumerateWithOptions: usingBlock:] with the NSEnumerationsConcurrent option, however, that has been reported to be not thread-safe so I'm not sure how it affects YapDB in this case.
One of my bottle-necks here (in the range of 100.000 elements in a collection) is applying the grouping, sorting, and in particular filtering blocks. As far as I can see we're only using one thread here, I wonder whether it would be possible to distribute that workload.
Applying a filtering block to one key, element, and/or metadata has no effects whatsoever on other filter blocks, hence I would think they could run in parallel.
Is this something to pursue further or not an issue at all for you guys?
The text was updated successfully, but these errors were encountered: