I'm wondering what's the best way to add additional data to a handle when I'm using IO::Select?
Basically I'd like to add a handle to IO::Select but also have additional info attached to that handle that I could retrieve later.
Note: I know I could keep a separate data structure which holds a handle and additional data but that would require coordinating two data structures and that's probably going to cause more problems than its worth.