创建实体后:
DatastoreService datastore = DatastoreServiceFactory.getDatastoreService();
Entity employee = new Entity("Employee");
如何设置可索引的列表属性?就像说:
employee.setProperty("tag", "manager", "corrupted", ...);
// "tag" is the property name,
// "manager", "corrupted".. are the values in the list.