The ylem-ids project contains code for working with identifiers, such
as generating them via LongIdGenerator and encoding/decoding them using
LongIdCodec.
// Generate identifiersLongIdGeneratorids = newSimpleLongIdGenerator();
longid = ids.next();
// Encoding and decodingLongIdCodec<String> codec = newBase62LongIdCodec();
Stringencoded = codec.encode(id);
longdecoded = codec.decode(encoded);This project is licensed under the MIT license,
see the file LICENSE.md for details.