Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am creating a facebook applicatioon using PHP-SDK and GRAPH-API. I feel like saving the email address of the users who play my app. but i have limited resource, i am still a student with financial crunch. Please let me know what impact the following feature will have on my app.

  1. a mysql database with three columns serial number, id, email address.
  2. if the user comes to play the app, get his details.
  3. perform an exhaustive search in the id column, if not found update it.

Performing these steps, will take how much execution time and stuff, please let me know, what long term impats it can have on my app.

Thanks a lot.

share|improve this question

2 Answers

up vote 1 down vote accepted

An Innodb storage and making the id field unique and you'll have no issues whatsoever ;-)

share|improve this answer
thnx for the insight – whatf Mar 15 '11 at 15:59

With proper indexing, I don't see why this would be a problem. If you're paying for the resources to host your script, then storing this small amount of additional data should have a negligible impact on your resource usage.

share|improve this answer
thnx for the insight, man!! – whatf Mar 15 '11 at 15:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.