Розмір відео: 1280 X 720853 X 480640 X 360
Показувати елементи керування програвачем
Автоматичне відтворення
Автоповтор
Thank you for the video. Could you please tell us more about deduping process? I saw other comment, but I still don't get idea what value will be stored within 24 bits.
What happens if NTP winds the clock backwards? How will this process ensure that the IDs generated are still unique if we go backwards in time?
The answer is, no way. The approach described here is not suitable if strict increment is required.
HiWhat is deduping process?
simple piece of code like:if (cur_timestamp == prev_timestamp) { ++counter; // deduping field} else { prev_timestamp = cur_timestamp}
@@WorkWithGoogler Thank you.
Thank you for the video. Could you please tell us more about deduping process? I saw other comment, but I still don't get idea what value will be stored within 24 bits.
What happens if NTP winds the clock backwards? How will this process ensure that the IDs generated are still unique if we go backwards in time?
The answer is, no way. The approach described here is not suitable if strict increment is required.
Hi
What is deduping process?
simple piece of code like:
if (cur_timestamp == prev_timestamp) {
++counter; // deduping field
} else {
prev_timestamp = cur_timestamp
}
@@WorkWithGoogler Thank you.