Objectify Indexed Entity not available for filtering in the google cloud datastore -
i have objectify entity field declared shown below
@index private @load ref<course> course;
but cant use field search entities in google cloud console because not available in drop down list of available parameters can used filter. note: field indexed after data had been added in data store.
what cause of this? have alter composite indexes?
single-property indexes created on per-entity basis when entity saved. unlike multiproperty indexes configured in datastore-indexes.xml
, changing java file not have effect on stored data.
you need resave relevant entities in order index field.
Comments
Post a Comment