vote up 4 vote down star

Hi, another Lua question: Is there a common way to get the current time in or with milliseconds? There is os.time(), but it only provides full seconds.

flag

71% accept rate
We could really use a proper date/time library in Lua. os.time and os.date often really don't cut it. – Nick Jan 22 at 20:22

4 Answers

vote up 7 vote down check

In standard C lua, no. You will have to settle for seconds, unless you are willing to modify the lua interpreter yourself to have os.time use the resolution you want. That may be unacceptable, however, if you are writing code for other people to run on their own and not something like a web application where you have full control of the environment.

Edit: another option is to write your own small DLL in C that extends lua with a new function that would give you the values you want, and require that dll be distributed with your code to whomever is going to be using it.

link|flag
DLL or .so, etc. Depends on system... :-) – PhiLho Jan 20 at 21:40
vote up 4 vote down

I use LuaSocket to get more precision.

require "socket"
print("Milliseconds: " .. socket.gettime()*1000)

This adds a dependency of course, but works fine for personal use (in benchmarking scripts for example).

link|flag
vote up 1 vote down

Kevlar is correct.

An alternative to a custom DLL is Lua Alien

link|flag
vote up 0 vote down

You can use C function gettimeofday : http://www.opengroup.org/onlinepubs/000095399/functions/gettimeofday.html

Here C library 'ul_time', function sec_usec resides in 'time' global table and returns seconds, useconds. Copy DLL to Lua folder, open it with require 'ul_time'.

http://depositfiles.com/files/3g2fx7dij

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.