rvesse commented on issue #2318: URL: https://github.com/apache/jena/issues/2318#issuecomment-1987997194
Another thing to consider if you have a predominantly read heavy workload and your datasets are relatively small is to just store them on disk in a single file using a format like Jena's RDF Thrift. You can then read them into a memory dataset directly from the data file rather than creating TDB datasets. The load overheard is going to be higher but you'd probably get more predictable memory release vs TDB and that might be an acceptable trade off. Obviously if your workload involves a lot of write operations then this isn't a viable option -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
