max-time! only returns first result #142
Replies: 4 comments
-
Interesting to consider how we should handle getting some results before timing out. Do we throw time_limit_exceeded and discard results? Or can we somehow throw without losing the incremental results? |
Beta Was this translation helpful? Give feedback.
-
secretly my intent was to give results up until the time.. sicne we are using a lazy iterator... they already have the answers (we canty take them back if we wanted to) then at timeout should they get an exception, they can catch,? and if they want they can continue to get more? |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
Was a bug but now that it is fixed we still have the open question about if a query choul;d be resumable after timeout |
Beta Was this translation helpful? Give feedback.
-
max-time!
only returns the first result but should return all (assuming it completes with the time limit). For exampleshould return
[a, b, c]
Beta Was this translation helpful? Give feedback.
All reactions