IBM JDK

2016-11-25 Thread Michael Kondratov
Anyone has any experience with IBM Java? For some reason I am getting anywhere from 2x to 4x performance loss. Michael Sent from my iPhone ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list (Webobjects-d

Re: Multi-tenant Postgres support with EOF ?

2016-11-25 Thread Vanek Josef
Thank you very much guys, I really appreciate your feedback and will think about your suggestions. Josef Le 25 novembre 2016 à 17:29:20, Samuel Pelletier (sam...@samkar.com) a écrit: Josef, Personally, I use a single schema and connection to the database with the object representing the curren

Re: Multi-tenant Postgres support with EOF ?

2016-11-25 Thread Samuel Pelletier
Josef, Personally, I use a single schema and connection to the database with the object representing the current tenant in the session and put all the fetch logic in that class that will add the required filtering qualifier. This way of doing things allow a single instance to easily serve multi

Re: Multi-tenant Postgres support with EOF ?

2016-11-25 Thread Ken Anderson
I have done this many times, but not with any specific support from the database. We stored all data in the same schema, and subclassed the editing context to have stop gap measures to ensure queries could not contain data other than the member/company that was connected to that session. Ideal

Multi-tenant Postgres support with EOF ?

2016-11-25 Thread Vanek Josef
Hi, We are developing a large website/REST solution for multiple customers. Ideally every customer shall have access only to their own data through ACLs or other mechanism. We have been thinking of Postgres' native schema management and use if for a multi-tenant solution. Has anyone implemented a