> I am using MySQL currently, but am starting to think that 
> maybe I don't 
> really need to use an RDBMS

You can use flat file storage, but that would be inefficient.

I guess you could try to create a custom system and keep
all the records in RAM.  That would require some decent
coding to make it efficient.  How big is your full dataset?
If it is small, the NDB engine stores indexed columns in
RAM.  That might work for you.

MyISAM tables is probabably going to be the easiest to
implement and it will still be quite fast.  Unless you
really need something fancy, I think you should go with
it.

        Neil

--
Neil Aggarwal, (281)846-8957, http://UnmeteredVPS.net
Host your MySQL database on a CentOS virtual server for $25/mo
Unmetered bandwidth = no overage charges, 7 day free trial


-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/mysql?unsub=arch...@jab.org

Reply via email to