Tagged Questions
2
votes
1answer
534 views
how to generate unique id like facebook, google+ in NodeJS
I'm using nodeJS and cassandra
I'm currently using UUID v1 as unique id
but, I think uuid is too long
I want to generate numeric unique id like fb and G+, which is shorter
and don't have to check ...
2
votes
1answer
267 views
Duplicated key in meteor collection with mongodb
I'm currently develop an meteor app and sometimes my server goes down with this error:
Exception while invoking method '/songs/insert' MongoError: E11000 duplicate key error index: megan.songs.$id ...
1
vote
1answer
109 views
Can you make mongo default to generating _ids as strings?
I'd like for mongo to generate it's _ids as strings. They're much more useable when sending back and fourth to the client or using in other parts of the program.
Right now I convert them to strings ...
1
vote
2answers
360 views
Generating UUIDs for IndexedDB keys?
The W3C spec for IndexedDB defines a key generator as:
A key generator generates a monotonically increasing numbers [sic] every time a key is needed.
Now, it seems (to me) that a common use case ...
3
votes
2answers
2k views
What makes this pseudo-GUID generator better than math.random()?
I found the question here:
How to create a GUID / UUID in Javascript?
The answer provides the following JS:
function S4() {
return (((1+Math.random())*0x10000)|0).toString(16).substring(1);
}
...
0
votes
2answers
108 views
Truly Random String in Javascript Asynchronously
I am using a javascript function to generate a random string:
function S4() {
return (((1+Math.random())*0x10000)|0).toString(16).substring(1);
}
function guid() {
/*$.ajax({
type: ...
7
votes
3answers
169 views
High density random strings in Javascript
I'm currently generating UUIDs in Javascript with this function (How to create a GUID / UUID in Javascript?):
lucid.uuid = function() {
return ...
39
votes
3answers
5k views
Collisions when generating UUIDs in JavaScript?
This relates to this question. I am using this answer to generate UUID in JavaScript:
'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
var r = Math.random()*16|0, v = c == ...
0
votes
2answers
739 views
Create a UUID from Timestamp (as number)
How can I create a UUID from the Timestamp number using Javascript?
Is there any existente API?
0
votes
2answers
382 views
Version 1 UUID Node.js binding?
I was trying to export https://github.com/LiosK/UUID.js into a module, but I'm having a rough time - version 4 is worthless to me (use case Cassandra) - does anybody know of a binding for these types ...
3
votes
2answers
2k views
JAVASCRIPT - dateobj.getTime for a UID - Is the length not fixed?
I'm using the following 2 lines of JS to create a UID:
var UID = dateobj.getTime();
UID = String(UID).substr(4);
It appears that sometimes it generates a number like:
564929300
other times like:
...
629
votes
25answers
154k views
How to create a GUID / UUID in Javascript?
I'm trying to create globally-unique identifiers in Javascript. I'm not sure what routines are available on all browsers, how "random" and seeded the built-in random number generator is, etc..
The ...
