Created
July 12, 2015 04:24
-
-
Save donigian/7f6f9c6773c1d5004c98 to your computer and use it in GitHub Desktop.
DomainShardRecord
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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