DEV Community

Discussion on: Deciding a database architecture for a Social Networking use-case?

Collapse
 
presto412 profile image
Priyansh Jain

A key value store wouldn't make sense for me to add the "friends of friends" functionality, since effectively it will be parsing through the entire list. I can still try to get an optimised method by using hashing to locate items I guess. Thanks for the suggestion.