20 Apr
2004
20 Apr
'04
1:18 p.m.
From: "Robb Shecter" <robb@acm.org>
It's something like a trip planner that computes an itinerary. Pretty simple use case actually - the user submits origin and destination, and potential trip plans are returned.
BUT: What I want to do is keep the data structure in memory. Right now, I have this written as a standalone Python app that creates all the objects it needs, and then uses an algorithm to find the shortest path.
Zope objects stored in a 'temp_folder' are held in RAM for faster access. You could create an object or property field in the temp_folder and then access it as required. HTH Jonathan