Re: [google-appengine] Re: Apache Ignite with GCP App Engine

2020-04-13 Thread Lovell Mathews
Thanks so much, appreciate it

On Mon, Apr 13, 2020 at 10:46 AM 'Olu' via Google App Engine <
google-appengine@googlegroups.com> wrote:

> Quite rightly, there are two levels of the App Engine memcache. As per
> this documentation[1], the Shared Memcache is free. You can find out more
> about configuring the Shared Memcache in this article.
>
> [1]
> https://cloud.google.com/appengine/docs/standard/python/memcache#service_levels
> [2]
> https://cloud.google.com/appengine/docs/standard/python/memcache/using#configuring_memcache
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-appengine+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-appengine/3e03215c-3678-4b72-b06e-060ad9a39a1c%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAAvP2EQh54nX7mmAvKAqf%3Dec3Rtdu9OB1ajR2%3D7abFTKWHWTYA%40mail.gmail.com.


Re: [google-appengine] Re: Apache Ignite with GCP App Engine

2020-04-13 Thread 'Olu' via Google App Engine
Quite rightly, there are two levels of the App Engine memcache. As per this 
documentation[1], the Shared Memcache is free. You can find out more about 
configuring the Shared Memcache in this article. 

[1]https://cloud.google.com/appengine/docs/standard/python/memcache#service_levels
[2]https://cloud.google.com/appengine/docs/standard/python/memcache/using#configuring_memcache

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/3e03215c-3678-4b72-b06e-060ad9a39a1c%40googlegroups.com.


Re: [google-appengine] Re: Apache Ignite with GCP App Engine

2020-04-13 Thread Lovell Mathews
Thanks, i did compare Apache ignite and memory store and chose ignite since
that was free. Memory store is not free.

I am building an online game and need an in memory storage to persist the
state of the game.

Having said that, I haven’t checked out memcache at all. May be I should
give that a try. Looks like it has a free version.

On Fri, Apr 10, 2020 at 10:13 AM 'Olu' via Google App Engine <
google-appengine@googlegroups.com> wrote:

> Hi, Lovell
>
> Are you aware that GCP has a bunch of in-memory data storage? For example,
> the Cloud Memorystore is a fully-managed in-memory data store service[1].
> Similarly, App Engine has the memcache[2] as a distributed in-memory data
> cache for some  of your application's tasks.
>
> So, depending on what your intentions are, I believe there are offerings
> already available in GCP which may be used. At this time though, It seems
> this implementation is not directly supported for App Engine applications
> in GCP.
>
> [1]https://cloud.google.com/memorystore
> [2]https://cloud.google.com/appengine/docs/standard/java/memcache
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-appengine+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-appengine/c5b7c0ad-6f09-4548-bc69-ecebd7344e8c%40googlegroups.com
> 
> .
>
-- 
Sent from Gmail Mobile

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAAvP2ERBDsnBw%2B1-HeWOQeJcGj2wBfJzGMk45giyDpwAcK%3DABQ%40mail.gmail.com.


Re: [google-appengine] Re: Apache Ignite with GCP App Engine

2020-04-10 Thread 'Olu' via Google App Engine
Hi, Lovell

Are you aware that GCP has a bunch of in-memory data storage? For example, 
the Cloud Memorystore is a fully-managed in-memory data store service[1]. 
Similarly, App Engine has the memcache[2] as a distributed in-memory data 
cache for some  of your application's tasks.

So, depending on what your intentions are, I believe there are offerings 
already available in GCP which may be used. At this time though, It seems 
this implementation is not directly supported for App Engine applications 
in GCP.

[1]https://cloud.google.com/memorystore
[2]https://cloud.google.com/appengine/docs/standard/java/memcache

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/c5b7c0ad-6f09-4548-bc69-ecebd7344e8c%40googlegroups.com.


Re: [google-appengine] Re: Apache Ignite with GCP App Engine

2020-04-09 Thread Lovell Mathews
Thanks, I will try posting it in stackoverflow !!

On Thu, Apr 9, 2020 at 10:25 AM 'Victor (Cloud Support)' via Google App
Engine  wrote:

>
> Hi there,
>
> I noticed your question is not getting much attention here.
>
> Since it is a Technical/How-To question, I recommend posting it on
> Stackoverflow, as these questions tend to get more attention there.
>
> Just remember to add the `google-app-engine` tag to your post.
>
>
> On Tuesday, April 7, 2020 at 11:13:36 PM UTC+2, Lovell Mathews wrote:
>>
>> Hello,
>>
>> Has anyone used Apache Ignite as as in memory db for you application in
>> GCP app engine?
>>
>> Cheers,
>> Lovell
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-appengine+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-appengine/fe651d59-9051-4d19-bdfa-62b9635dd68e%40googlegroups.com
> 
> .
>
-- 
Sent from Gmail Mobile

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAAvP2ETGcRHCCJUY1u7aJPwqqACGBOX_%2BsUdsZP4DZAgnpst2w%40mail.gmail.com.