考虑一个基于 Web 的系统,其中多个用户可能同时创建帐户。系统要求用户拥有唯一的用户名和唯一的电子邮件地址。在 RDBMS 中,这很简单:“email”字段将被标记为 UNIQUE。我怎么能以数据存储的方式处理这个?
这是我最初的尝试:
// Create entity using the username as key
String username = ... // provided by the user
String email = ... // provided by the user
Entity entity = new Entity("Users", KeyFactory.createKey("User", username));
entity.setProperty("email", email);
// Create a query that matches the email property
Query q = new Query();
q.setFilter(new FilterPredicate("email", FilterOperator.EQUAL, email));
// Start a transaction
Transaction txn = datastore.beginTransaction();
try {
// Try to get an entity with that username
datastore.get(KeyFactory.createKey("User", username);
}
catch(EntityNotFoundException e) {
// No entity with that username, make sure the e-mail
// is not taken either
PreparedQuery pq = datastore.prepare(q);
if (pq.countEntities(FetchOptions.Builder.withLimit(1)) == 0) {
// The e-mail isn't taken either, all good
datastore.put(entity);
txn.commit();
... handle success here ...
return;
}
}
finally {
if (txn.isActive())
txn.rollback();
}
... handle failure here ...
但是经过一些简单的测试后,我注意到查询并不总是“看到”不久之前所做的“放置”(最终的一致性,我应该猜到了)。为了解决这个问题,我尝试将该查询转换为“虚拟”祖先查询。
所以这个“虚拟”祖先查询是这样工作的。我使用命名键创建了一个 RootUser 类型的实体。我从这个 root 用户那里获得了密钥,并在上面的代码中将其设为查询的祖先密钥。现在这也不起作用,我仍然收到重复的电子邮件地址。我还尝试配置事务,使其成为跨组事务,但这也无济于事。
那么,有关如何使其正常工作的任何提示?有可能吗?