Skip to content
Discussion options

You must be logged in to vote

To answer this question:

Yes, GDPR-compliance can be archived with one of these options:

  1. Directly modify the event-stream (YouTube)
    • certainly doable - especially when using a DB with native JSON-fields - but generally not recommended.
  2. Mark personal identifiable information on a per-event-basis and redact before persisting:
    • pros:
      • once the implementation is in place, processing PII is as simple as adding the "GDPR" PHP-attribute (or something similar)
      • full history (name changes etc.)
    • cons:
      • technical implementation is more on the heavy side
  3. Save PPI separately from aggregate:
    • pros:
      • dead simple implementation (basically saving individual fields in a separate DB)
    • cons:
      • no ful…

Replies: 4 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by sebastianstucke87
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants