|
|
|
|
|
by rozenmd
1592 days ago
|
|
The fingerprinting part is to avoid double counting and using cookies - most analytics and feature flag services have something equivalent to: hash(salt + ip_address + user_agent + some_other_unique_characteristics) for analytics you could rotate the salt daily if you're only concerned about daily unique visitors |
|
One thing I'd like to do is try something like what you said server-side and compare how closely a hash of those properties matches the "accuracy" of fingerprinting. I'm only looking for something of reasonable precision during short periods of time (to avoid obvious double-counting) so if that tracked reasonably enough, it'd be a very interesting alternative.