logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Data::Uniqid - Perl extension for simple genrating of unique id's

Author

       Mike Wesemann, <mwx@gmx.de>

Description

       Data::Uniqid provides three simple routines for generating unique ids.  These ids are coded with a Base62
       systen to make them short and handy (e.g. to use it as part of a URL).

         suinqid
           genrates a very short id valid only for the localhost and with a
           liftime of 1 day

         uniqid
           generates a short id valid on the local host

         luniqid
           generates a long id valid everywhere and ever

Name

       Data::Uniqid - Perl extension for simple genrating of unique id's

See Also

       perl.

perl v5.36.0                                       2022-10-15                                        Uniqid(3pm)

Synopsis

         use Data::Uniqid qw ( suniqid uniqid luniqid );

         $id = suniqid;
         $id = uniqid;
         $id = luniqid;

See Also