Skip to content

Instantly share code, notes, and snippets.

@donigian
Created July 12, 2015 04:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save donigian/7f6f9c6773c1d5004c98 to your computer and use it in GitHub Desktop.
Save donigian/7f6f9c6773c1d5004c98 to your computer and use it in GitHub Desktop.
DomainShardRecord
/* Purpose of DomainShardRecord is to store/correlate Domain Partition for a particular userId.
To surpass the max column width limitation with RDBMs, you can implement additional case classes for other Entities. */
case class DomainShardRecord(userId: String, password: String, userName: String)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment