说我会像这样放一个实体:
Key entityKey = _ds.put(e); // Using DatastoreService
如果e是Entity
类型,我如何以编程方式指定实体中的某个属性应该被编入索引。
答案 0 :(得分:2)
如果您使用entity.setProperty("propertyName", "value")
,则会将其编入索引。
如果您使用entity.setUnindexedProperty("propertyName", "value")
,则不会将其编入索引。