Hi,
Just a simple question: does K6 has a guid
library or support?
I have used
import { uuidv4 } from 'https://jslib.k6.io/k6-utils/1.1.0/index.js';
now looking for guid
equivalent.
Hi,
Just a simple question: does K6 has a guid
library or support?
I have used
import { uuidv4 } from 'https://jslib.k6.io/k6-utils/1.1.0/index.js';
now looking for guid
equivalent.
As far as I am aware they are the same thing.
According to the rfc uuid abstract (RFC 4122 - A Universally Unique IDentifier (UUID) URN Namespace)
This specification defines a Uniform Resource Name namespace for UUIDs (Universally Unique IDentifier), also known as GUIDs (Globally Unique IDentifier).
In general, there is no difference between a GUID and UUID . Both are 128 bit identifiers. UUID is defined via IETF RFC4122 whereas GUID was defined by Microsoft for the Windows O/S
Thank you for the clarification @BobRuub ,
Was working on a test for Oracle Database.