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
During the work on issue #3132 (PR #3622) the new mongoDriver/ internal API removed the BSON streaming mode and all the existing usages were moved to classical append style.
This issue is about analyzing if re-introducing a BSON streaming API in mongoDriver/ would be a good idea, taking into account the following factors:
Feasibility. Would it be possible? How to "link" with the streaming API in the underlying driver (mongo C driver)?
Legilibility improvements. Would we get legibility in code compared with the append style (in mongoQueryTypes.cpp for instance probably there would be a good gain)
Cost. How costly would be to change the parts now using append style to use the streaming mode?
The text was updated successfully, but these errors were encountered:
Look in the code base for FIXME #3774 to find places that potentially would benefit from the usage of BSON streaming mode. It is not an exhaustive analysis, but a good starting point.
During the work on issue #3132 (PR #3622) the new mongoDriver/ internal API removed the BSON streaming mode and all the existing usages were moved to classical append style.
This issue is about analyzing if re-introducing a BSON streaming API in mongoDriver/ would be a good idea, taking into account the following factors:
The text was updated successfully, but these errors were encountered: