Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个用于存储用户详细信息的架构。现在,从我的 java 代码中,我想实现一种通过用户名和密码检查用户是否存在的方法。问题是 ColumnFamilyQuery 要求我提供应用程序不知道的行键。我将如何做到这一点。我对卡桑德拉真的很陌生
您使用什么数据作为行键?
如果您在客户端代码中强制执行用户名唯一性,您可以使用用户名作为行键本身。这样,您始终可以通过用户名找到用户记录。否则,您可以从用户名和其他一些唯一数据中创建一个复合键以避免冲突。