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
Currently the ReactiveCouchbase.bucket(~) method is a blocking call which is not something one would expect since all blocking operations are supposedly dealt with asynchronously.
Since Bucket instances are cached, blocking only happens when a bucket is opened for the first time.
The text was updated successfully, but these errors were encountered:
https://github.com/ReactiveCouchbase/reactivecouchbase-rs-core/blob/master/src/main/scala/org/reactivecouchbase/rs/scaladsl/Bucket.scala#L81
(
openBucket
is blocking)Currently the
ReactiveCouchbase.bucket(~)
method is a blocking call which is not something one would expect since all blocking operations are supposedly dealt with asynchronously.Since Bucket instances are cached, blocking only happens when a bucket is opened for the first time.
The text was updated successfully, but these errors were encountered: