cnabio / cnab-go

A Go implementation of CNAB Core 1.0
MIT License
69 stars 37 forks source link

Use concurrency in the data persistence layer? #214

Closed carolynvs closed 1 year ago

carolynvs commented 4 years ago

Right now our data persistence layer is designed without concurrency. There isn't an opportunity for the caller to introduce it either because our functions are controlling the looping mechanisms to retrieve lists of data, or child datasets. With #212 the number of claims in an installation, or outputs in a result, etc is large enough that allowing concurrency, or just using it inside our library is necessary.

So let's decide on it and make the improvement after #212 is merged.

carolynvs commented 1 year ago

Closing since data persistence has been removed from cnab-go