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
I use the pthread_self function for the :process id for events. However, these pointers are 64 bits long and so don't fit for some of the uses Clojure does.
I think this might actually be a common use case but maybe there is too much of a performance problem or something.
The text was updated successfully, but these errors were encountered:
I think arbitrary objects should be fine, you'll just pay some extra penalties for comparisons over bigints. Might be worth remapping those process ids to small numbers just for your own sanity; might make it easier to read the traces. :)
I use the
pthread_self
function for the:process
id for events. However, these pointers are 64 bits long and so don't fit for some of the uses Clojure does.I think this might actually be a common use case but maybe there is too much of a performance problem or something.
The text was updated successfully, but these errors were encountered: