I allow anonyous users to post a comment. I generate a GUID and insert them into a userTable and assign an anonymous role.
I dont save much other than the post itself tso the user table fields are pretty much empty.
My concern is that I will have unnecessary rows in the user table which I then have to go in at some point and erase and risk messing things up. And aslo that generating a GUID and doing the extra insertion is expensive?
What is the point to do what im doing vs simply storing the post with a GUID shared by all anonymous posts?
can someone assess efficacy here?