Use uint64 to hold queue size in message stats ? #10
Locked
sebastian-nagel
started this conversation in
General
Replies: 3 comments 1 reply
-
thanks @sebastian-nagel |
Beta Was this translation helpful? Give feedback.
0 replies
-
ListQueues probably doesn;t need to be a uint64 but it doesn' tmatter really |
Beta Was this translation helpful? Give feedback.
1 reply
-
@sebastian-nagel implemented in a21656a |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
The number of queued URLs in the message stats is hold in a uint32 type (see urlfrontier.proto) which naturally limits the max. number of URLs to 2^32 resp. 2^31 if there are no unsigned integer types in the target programming language (eg. Java).
What about using uint64 instead?
Beta Was this translation helpful? Give feedback.
All reactions