1Uniqid(3) User Contributed Perl Documentation Uniqid(3)
2
3
4
6 Data::Uniqid - Perl extension for simple genrating of unique id's
7
9 use Data::Uniqid qw ( suniqid uniqid luniqid );
10
11 $id = suniqid;
12 $id = uniqid;
13 $id = luniqid;
14
16 Data::Uniqid provides three simple routines for generating unique ids.
17 These ids are coded with a Base62 systen to make them short and handy
18 (e.g. to use it as part of a URL).
19
20 suinqid
21 genrates a very short id valid only for the localhost and with a
22 liftime of 1 day
23
24 uniqid
25 generates a short id valid on the local host
26
27 luniqid
28 generates a long id valid everywhere and ever
29
31 Mike Wesemann, <mwx@gmx.de>
32
34 perl.
35
36
37
38perl v5.32.1 2021-01-27 Uniqid(3)