[google-appengine] Re: in datastore, how can i write long text over 1500 byte

2017-04-16 Thread 김진형
thanks for reply my question,!!! :) but i can't solve the problem yet. my example is = var entity = { title: data.title, name: data.name, contents: data.contents } follow your advice var entity = { title: data.title, name: data.name, contents: data.contents, excludeFromIndexes: true } but sam

[google-appengine] Re: in datastore, how can i write long text over 1500 byte

2017-04-16 Thread 'Adam (Cloud Platform Support)' via Google App Engine
You'll need to save the text as an unindexed property. To do this, you need to store the value explicitly as an array to specify excludeFromIndexes: true, eg. var entity = { key: datastore.key('Company'), data: [ { name: 'description', value: "Some long text greater than 1500 bytes ...", exclud