The memory-table tag has no wiki summary.
5
votes
3answers
332 views
Indexing every column in a table
I have a couple of questions regarding MySQL indexing:
1) Is there any speed increase when indexing a table stored in memory?
2) When searching my table I match on column field, would indexing every ...
2
votes
3answers
138 views
Why not use MySQL like memcached?
For the same reason it makes sense to use both NoSQL and RDBMSs in one application, It makes sense to me to have an RDBMS cache besides NoSQL cache.
I was thinking about using a MySQL server with all ...
1
vote
2answers
213 views
Mysql: what to do when memory tables reach max_heap_table_size?
I'm using a mysql memory table as a way to cache data rows which are read several times. I chose this alternative because I'm not able to use xcache or memcache in my solution.
After reading the mysql ...
1
vote
2answers
194 views
mysql, force limited entries in a table
I keep some temporary data in a memory table. I only need the 20 most recent entries and would prefer the data is always be on the heap. How should i accomplish this? i am sure theres nothing i can do ...
0
votes
1answer
42 views
2 servers, 2 memory tables, different sizes
I have got two servers both running a MySQL instance. The first one, server1, is running MySQL 5.0.22. The other one, server2, is running MySQL 5.1.58.
When I create a memory table on server1 and I ...
0
votes
1answer
88 views
Simple constant select on primary key in small MEMORY table very slow
I have a MEMORY table with about 650 rows, 5 MB data length, 60 kB index length (so it's pretty small). It has one SMALLINT primary (hash) key, and about 90 other columns (ints, varchars, datetimes, ...