Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
I'm working on a project that demands I pass the time since the epoch in milliseconds. Getting the value was simply a matter of using Time::HiRes::gettimeofday. Now I've got the seconds since the epoch plus the extra microseconds. My understanding was that the function would return the milliseconds, but the value returned has six digits, not three. That quirk notwithstanding, my main issue is that my method of joining the two values together into a single number seems inelegant and I wonder if I'm missing something. Here's my code:
use Time::HiRes qw(gettimeofday); $one = gettimeofday; print STDOUT "one = $one\n"; ($sec,$milli) = gettimeofday; print STDOUT "sec = $sec, milli = $milli\n"; $milli2 = sprintf("%.*s", 3, $milli); print STDOUT "sec = $sec, milli = $milli, milli2 = $milli2\n"; $time = join ('',$sec,$milli2); print STDOUT "time = $time\n"; Output: one = 1227582343.55258 sec = 1227582343, milli = 552702 sec = 1227582343, milli = 552702, milli2 = 552 time = 1227582343552
It seems to me that I'm using three lines of code to do something that should be fairly basic and that using sprintf to trim microseconds into milliseconds is a complete hack. Moreover, the docs for gettimeofday() continually refer to the value returned as "milliseconds", which implies a three-digit number (thousandths of a second). I suspect that there's a better way to do this but I'm kind of stumped.

-Logan
"What do I want? I'm an American. I want more."


In reply to Epoch time in milliseconds: Is there a better way? by logan

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (5)
As of 2024-04-18 04:48 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found