[google-appengine] Re: How to drop indexes from deployed app?

2010-04-29 Thread Petrov Aleksander
Maxime, I steel can't find a better solution (or any solution for Java developers at all). I believe soon "vacuum_indexes" will be available for us too. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to go

[google-appengine] Re: How to drop indexes from deployed app?

2010-04-27 Thread Petrov Aleksander
bad typing... I made a mistake: should be like this 4. in command line execute "python appcfg.py vacuum_indexes new_project_template/" -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-appeng...@goo

[google-appengine] Re: How to drop indexes from deployed app?

2010-04-13 Thread Petrov Aleksander
If anyone would ever be interested how to vacuum indexes from Java try this: 1. download SDK Google App Engine for Python from http://code.google.com/intl/en/appengine/downloads.html 2. unzip it 3. in google_appengine/new_project_template folder change app.yaml. So it would be like this application

[google-appengine] Re: How to drop indexes from deployed app?

2010-04-13 Thread Petrov Aleksander
I'm using Java.. appcfg.sh has no vacuum_indexes command.. I assume that with deploying Python app and then using appcfg.py vacuum_indexes myapp/ I can delete unused indexes. Is there any easier way to vacuum indexes? -- You received this message because you are subscribed to the Google Groups "

[google-appengine] How to drop indexes from deployed app?

2010-04-11 Thread Petrov Aleksander
I've got an application and total number of indexes is more then 80.. Some of them are useless now. So I wont to get rid of them. Even more the entities are no longer exist in my app. With the limit in 100 indexes I need to drop the useless. Now I have only one idea: to create a new app and deploy

[google-appengine] Re: Filter by Collection property issue

2010-04-08 Thread Petrov Aleksander
Ikai Lan, thanks a lot.. very usefull video. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-appeng...@googlegroups.com. To unsubscribe from this group, send email to google-appengine+unsubscr...

[google-appengine] Re: Filter by Collection property issue

2010-04-08 Thread Petrov Aleksander
So, if I need to filter MyEntity by myStrCollection property would it affect efficiency?? For example if I have 500 values in myStrCollection. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-appen

[google-appengine] Filter by Collection property issue

2010-04-07 Thread Petrov Aleksander
I have an entity with Collection property like this: class MyEntity{ List myStrCollection = new ArrayList(); .other properties.. } Instance of MyEntity can contain myStrCollection property with 200 values; I have about 10 different indexes containing filter by myStrCollection. So the que