-
Notifications
You must be signed in to change notification settings - Fork 147
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: deduplicate all $set calls done from setPersonProperties #1813
base: main
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PR Summary
This PR moves deduplication logic for $set calls from the identify function to setPersonProperties, centralizing the handling of person property updates across multiple methods.
- Renamed
getIdentifyHash
togetPersonPropertiesHash
insrc/utils/identify-utils.ts
for better clarity - Moved deduplication logic from
identify
tosetPersonProperties
to handle all $set calls in one place - Renamed
_cachedIdentify
to_cachedPersonProperties
insrc/posthog-core.ts
to reflect broader usage - Added hash check and caching in
setPersonProperties
to prevent duplicate property updates
2 file(s) reviewed, 1 comment(s)
Edit PR Review Bot Settings | Greptile
Size Change: +640 B (+0.02%) Total Size: 3.6 MB
ℹ️ View Unchanged
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks good, but there's a rogue log I'd love you to remove before we can merge this
This PR hasn't seen activity in a week! Should it be merged, closed, or further worked on? If you want to keep it open, post a comment or remove the |
This PR hasn't seen activity in a week! Should it be merged, closed, or further worked on? If you want to keep it open, post a comment or remove the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
the implementation looks valid to me...
i think I don't know enough about person processing to think through potential impacts which is probably a team CDP thing
const { posthog, beforeSendMock } = await setup('always') | ||
|
||
posthog.setPersonProperties({ name: 'John', email: '[email protected]' }) | ||
posthog.setPersonProperties({ email: '[email protected]', name: 'John' }) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thought: You might be at the mercy of browser engines here. The code relies on getPersonPropertiesHash
which isn't really a hash function. AFAIK, there's nothing that guarantees the ordering of fields in the output of JSON.stringify, so you might get different results for the above two objects. Anyway, that just means that some events won't get deduplicated.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah I think that most implementations do maintain key order, but it isn't critical if they don't
Paul and Zachg approved, I'm hasppy
Changes
Move deduplication of set events from
identify
tosetPersonProperties
which is used by other methods calling$set
(e.g.people.$set
,people.$set_once
and.setPersonProperties
)Checklist