evanshortiss / sns-mobile

Push notifications to Android, Kindle, and iOS devices easily using this module.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[Question] Adding a user even if already exists

alex-nishikawa opened this issue · comments

Would it be unwise to call addUser every time before sending a notification instead of having to keep track if the user was already created.

@alex-nishikawa correct, you probably don't want to do this. It will add overhead, and I'm not sure if the same ID (Arn) will be returned each time meaning you'll build an enormous number of unnecessary Arns.

I've associated the Arn returned with a user account in a DB for this. It also includes the push token their device returned.