How should I capture clickstream data?
Posted
by
editor
on Stack Overflow
See other posts from Stack Overflow
or by editor
Published on 2010-07-07T14:36:57Z
Indexed on
2010/12/24
7:54 UTC
Read the original article
Hit count: 184
client-server
|client-side
I'd like to start using clickstream analysis to improve a dynamic site's user experience. I'd like to rule out two options: parameterizing URLs (index.php?src=http://www.example.com) and immediate database logging. The former makes pretty ugly URLs and isn't great for SEO and the latter might slow down page render when there are lots of concurrent users.
Assuming these aren't viable options, I think I'm left with doing an asynchronous POST to a server side script that runs a database query and returns a 204 (no data) response. Is this the best option for capturing clickstream data?
© Stack Overflow or respective owner