|
Posted by Sebastiaan 'CrashandDie' Lauwers on 07/12/07 12:19
busnet wrote:
> Hi.
Hi,
> Problems/need for ideas:
> 1) It always reads the XML file anew, when I set another marker. Is
> there some way to cache this or a more intelligent approach? I tried
> saving the whole Simplexml-object in a session variable, but it was
> too huge. I guess I could create some tables in mysql, but I'm not
> sure thats the best solution yet.
Serialize () the simpleXML-object, and save that in a text file ?
On load, $xmlSimpleObject = unserialize (file_get_contents ()) ?
Dunno if it's faster, but it just might be.
> 2) Not php-specific: Do you have any ideas how to speed up the process
> of finding the nearest lane(s)? I tried to consider only those streets
> whose endpoints are within a certain range from the given marker-
> point, but it was not considerably faster and if there was a street
> thats very long and straight the endpoints may be far away, but the
> street itself is quite near.
Can't help you with that, sorry.
HTH,
S/
[Back to original message]
|