Hi, Is it possible to use a connection pool with a partitioned graph?
Consider this: Let's say I wanted to model the contents of 3000 websites in a single graph. The Vertex class in the graph might be called: "Page" with author, lastmod, size, properties. The Edge class might be called "LINKSTO" (e.g. 0:many (Page -- LINKSTO --> Page) relationship. Since each website is a separate customer, I wanted to avoid having 3000 graphs and use a Partitioned-Graph. https://github.com/orientechnologies/orientdb/wiki/Partitioned-Graphs So I'd have one graph for all 3000 customers but 3000 customerid (or graph user). Although I anticipate my site to be low traffic (at any given time < 100 customers) how can I effectively use the connection pool? The connection pool works at the DB level right? Do I need a separate pool for every customer? Per the wiki database = new ODatabaseDocumentTx("remote:localhost/demo"); database.setProperty("minPool", 2); database.setProperty("maxPool", 5); database.open("admin", "admin"); Alan -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
