Tareq
Tareq

Reputation: 92

Pushing updates to specific users

I've seen this technique used by Facebook, they have a join list feature which would allow certain users to receive the update version while other people would still be using the old version.

How is this possible to accomplish?

Upvotes: 0

Views: 78

Answers (2)

Stevko
Stevko

Reputation: 4505

Rather than doing the inline approach, Facebook rolls out changes gradually across their server farm. Tech journalists and early adopters are provisioned onto the set of servers that receive the new updates first.

Upvotes: 1

Mayukh Roy
Mayukh Roy

Reputation: 1815

Simple way to achieve this:

  • Mark old and new users with a Database Boolean flag.
  • Check this condition and show different versions to old and new users.

Upvotes: 0

Related Questions