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

Popular posts from this blog

'hasOwnProperty' in javascript -

javascript - Knockout pushing observable and computed data to an observable array -

c# - Update a combobox from a presenter (MVP) -