Sqidsは、数値から短い一意の識別子を生成できるオープンソースのライブラリです。これらのIDはURLセーフであり、複数の数値をエンコードでき、一般的な卑語を含んでいません。 もっと読む .
こう見えます:
クイックエンコード&デコードの例:
const s = try sqids.Sqids.init(allocator, .{})
const id = try s.encode(&.{1, 2, 3}); // "86Rf07"
const numbers = try s.decode(id); // {1, 2, 3}
IDが短すぎる場合は、特定の長さまでパディングすることができます:
const s = try sqids.Sqids.init(allocator, .{.min_length = 10})
const id = try s.encode(&.{1, 2, 3}); // "86Rf07xd4z"
const numbers = try s.decode(id); // {1, 2, 3}
アルファベットをシャッフルしてユニークなIDを作成する:
const s = try sqids.Sqids.init(allocator, .{.alphabet = "k3G7QAe51FCsPW92uEOyq4Bg6Sp8YzVTmnU0liwDdHXLajZrfxNhobJIRcMvKt"})
const id = try s.encode(&.{1, 2, 3}); // "XRKUdQ"
const numbers = try s.decode(id); // {1, 2, 3}
完全なドキュメントはこちら https://github.com/sqids/sqids-zig
Sqidsの主な用途は純粋に視覚的です。プロジェクトで数字の代わりにIDを使用したい場合、Sqidsは良い選択肢になるかもしれません。