[maemo-developers] Maemo-mapper vector data backend follow-up
From: Andrew Zabolotny zap at homelink.ruDate: Tue Sep 23 23:59:30 EEST 2008
- Previous message: Maemo-mapper vector data backend follow-up
- Next message: Maemo-mapper vector data backend follow-up
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
From Tue, 23 Sep 2008 12:29:06 +0100 "Simon Pickering" <S.G.Pickering at bath.ac.uk> wrote: My two cents. I would strongly suggest against using Python and MySQL for such a project. Python has a very large memory overhead compared to C/C++, and a NIT doesn't have much memory to waste (I'd rather use the memory to launch some extra program). MySQL is not easy to set up, and it's simply much more than you generally need. If you definitely need SQL, I would suggest the SQLite library, which basically just stores a SQL database in a single file and does not need any server process. But I would even suggest against using SQL, if that's possible, because parsing and interpreting SQL language involves unneeded overhead. A thing such simple as a vector map could be easily stored in a plain Berkley database. -- Andrew -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 197 bytes Desc: not available Url : http://lists.maemo.org/pipermail/maemo-developers/attachments/20080924/384e42a3/attachment.pgp
- Previous message: Maemo-mapper vector data backend follow-up
- Next message: Maemo-mapper vector data backend follow-up
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]