掲示板

What is uuid_ ?

thumbnail
12年前 に Nguyen Van Chuong によって更新されました。

What is uuid_ ?

New Member 投稿: 13 参加年月日: 12/01/24 最新の投稿
hi every body !
i don't know uuid_ . help me emoticon
thanks .

example:

CREATE TABLE `bookmarksfolder` (
[size=6] [b]`uuid_` varchar(75) collate utf8_unicode_ci default NULL,[/b][/size]
  `folderId` bigint(20) NOT NULL,
  `groupId` bigint(20) default NULL,
  `companyId` bigint(20) default NULL,
  `userId` bigint(20) default NULL,
  `userName` varchar(75) collate utf8_unicode_ci default NULL,
  `createDate` datetime default NULL,
  `modifiedDate` datetime default NULL,
  `resourceBlockId` bigint(20) default NULL,
  `parentFolderId` bigint(20) default NULL,
  `name` varchar(75) collate utf8_unicode_ci default NULL,
  `description` longtext collate utf8_unicode_ci,
  PRIMARY KEY  (`folderId`),
  UNIQUE KEY `IX_DC2F8927` (`uuid_`,`groupId`),
  KEY `IX_2ABA25D7` (`companyId`),
  KEY `IX_7F703619` (`groupId`),
  KEY `IX_967799C0` (`groupId`,`parentFolderId`),
  KEY `IX_28A49BB9` (`resourceBlockId`),
  KEY `IX_451E7AE3` (`uuid_`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
thumbnail
12年前 に Ram Manusani によって更新されました。

RE: What is uuid_ ?

Regular Member 投稿: 124 参加年月日: 11/10/27 最新の投稿
It is a Universal unique Identifier, UUID (or GUID) is a unique identifier that can be created without a central authority. UUIDs can be used if a sequence number is not good enough. This implementation is thread safe and very fast.
thumbnail
12年前 に Nguyen Van Chuong によって更新されました。

RE: What is uuid_ ?

New Member 投稿: 13 参加年月日: 12/01/24 最新の投稿
thaks you emoticon
thumbnail
11年前 に Danny Stevens によって更新されました。

RE: What is uuid_ ?

New Member 投稿: 20 参加年月日: 11/09/15 最新の投稿
Ram Manusani:
It is a Universal unique Identifier, UUID (or GUID) is a unique identifier that can be created without a central authority. UUIDs can be used if a sequence number is not good enough. This implementation is thread safe and very fast.



If you are copying a user or group from one Liferay server to another would a uuid be certain to be unique in the new Liferay server?
thumbnail
11年前 に Brian Kim によって更新されました。

RE: What is uuid_ ?

Expert 投稿: 311 参加年月日: 04/08/17 最新の投稿
Danny Stevens:
Ram Manusani:
It is a Universal unique Identifier, UUID (or GUID) is a unique identifier that can be created without a central authority. UUIDs can be used if a sequence number is not good enough. This implementation is thread safe and very fast.


If you are copying a user or group from one Liferay server to another would a uuid be certain to be unique in the new Liferay server?


Your question isn't really clear. What do you mean by "copying"? In what way is the "one Liferay server" related to the "new Liferay server"?