Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>For app engine you will want a lightweight framework, both for persistance and application stuff. Google is changing their pricing model so you might want to consider how this will impact your plans as well. There is an interesting discussion on the app engine group about this: <a href="https://groups.google.com/forum/#!topic/google-appengine/ob-kMuDAAqc/discussion" rel="nofollow">https://groups.google.com/forum/#!topic/google-appengine/ob-kMuDAAqc/discussion</a></p> <p>Aside from that I can only comment on the choice of <strong>persistance framework</strong>:</p> <p><strong>JDO</strong> on app engine is a pain. The version they (Google) support in app engine is 1.x, which is ancient, I believe. I have had more trouble with getting things to work than I care to remember. <strong>If you have previous experience with JDO this still might be a good choice.</strong> If I were to start over again I would choose a persistence framework that was specifically written for app engine, like <strong>objectify</strong> or <strong>twig</strong>. They require less overhead and are easier to use (from my point of view). One <strong>giant</strong> plus of objectify: gives you <strong>memcache support out of the box</strong> with no extra work. How great is that?</p> <p>However, you also want to support an RDBMS. If you have the time, you could roll your own abstraction layer on top of objectify and the RDBMS persistance layer of your choice. That would give you the edge in performance that you are looking for. ;)</p> <p>If that is not an option I would suggest JPA (not because I have used it myself, but because I had so much trouble with JDO).</p> <p>Hope this helps!</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload