Tagged Questions
The memcachedb tag has no wiki summary.
6
votes
5answers
3k views
PHP - Redis/Memcachedb/Mongodb or other persistent storage to store counter
By counter it could be pageviews, downloads, number of votes etc. Basically, not very 'critical' data.
What is the 'best' way to store those information? Mysql is not a good option. What do you guys ...
4
votes
1answer
491 views
Subqueries and MySQL Cache for 18M+ row table
As this is my first post it seems I can only post 1 link so I have listed the sites I'm referring to at the bottom. In a nutshell my goal is to make the database return the results faster, I have ...
2
votes
3answers
122 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 ...
2
votes
3answers
278 views
wanting a good memory + disk caching solution
I'm currently storing generated HTML pages in a memcached in-memory cache. This works great, however I am wanting to increase the storage capacity of the cache beyond available memory. What I would ...
1
vote
2answers
194 views
Python memcache preserve order in get_multi()
How can I preserve the order of the values fetched with memcache's get_multi() function? By default, the order returned is random. Thanks.
1
vote
0answers
51 views
How to use the cache store configured in application controller @ workling?
I have a cache_store configure in Application controller through the following @ config/environments/*.rb:
config.action_controller.cache_store = :mem_cache_store, MEMCACHE_CONFIG['host'].to_s + ':' ...
1
vote
6answers
2k views
Memcachedb Versus MongoDB Versus CouchDB in terms of file based caching solution?
We need a caching solution that essentially caches data (text files) anywhere from 3 days up to a week based on user preferences and criteria. In this case memory based caching does not make sense to ...
1
vote
4answers
696 views
Fast, scalable hash lookup database? (Berkeley'ish)
I use and love Berkeley but it seems to bog down once you get near a million or so entries, especially on the inserts. I've tried memcachedb which works but it's not being maintained so I'm worried ...
0
votes
2answers
81 views
MySQL Memory Table, Memcached or anything else?
A dataset growing currently >1 million which requires constant lookup / updation of user specific data.
looking for fastest and scalable option with high TPS.
Memcache/memcacheddb vs mysql memory ...
0
votes
0answers
24 views
How disable transactions on memcachedb?
I need to disable transactions in memcachedb-1.2.0 to improve performance. Hot i can do that? Thanks!
0
votes
2answers
121 views
Does adding Memcached/APC require writing codes again?
I'm planing to add APC or MEMCACHED to my PHP code !
my question is does it require to rewrite all the code ?
as i looked in to PHP Manual and there i got this !
function get_foo(foo_id)
foo = ...
0
votes
1answer
217 views
Storing Session State in an ASP.Net Web Farm (Memcachedb or…?)
We have an ASP.Net [MVC] web farm (Windows Server 2008 R2 running IIS). For which we want to share session state across each box.
I'm aware that we can do this with SQL Server, but understand that ...
0
votes
0answers
109 views
Memcache is not working in my local tomcat server
I am trying to implement the memcache cache concept to my web application for good performance using java and tomcat server.
String[] serverlist = { "127.0.0.1:9000"};
SockIOPool pool = ...
0
votes
2answers
101 views
Grab html from memcached if found, if not render and save to memcached
For a specific controller's action, how would I first check to see HTML is in memcached, and yes then render from cache.
If not found, render the view page's html, then take that html and store it in ...
0
votes
1answer
64 views
Nested memcache lookups in Python, o(n) good/bad?
Is something like this bad with memcache?
1. GET LIST OF KEYS
2. FOR EACH KEY IN LIST OF KEYS
- GET DATA
I'm expecting the list of keys to be around ~1000 long.
If this is bad, I'm wondering if ...
0
votes
1answer
80 views
Serving static images thru Lighttpd
I am trying to build library application. Converting the PDF documents to PNG images. (each page is one PNG file)
So there will be several millions of PNG's going to be there in the server.
Number of ...
0
votes
1answer
442 views
Can I Use MemcacheDB to Replace Memcached in django?
I want to use MemcacheDB instead of Memcached because I don't have a lot of RAM for Memcached.
Will it work with django's cache framework?
Is there anything additional I would need to do?
0
votes
2answers
178 views
Worrying about scalability of a new site
I am building a webapp that has the following characteristics:
It only has a small number of pages, home,contact us, about,singup,etc.
Each user has one jquery-based page that allows them to ...
-1
votes
2answers
139 views
NoSQL/Document Store Searching
I have researching NoSQL for a while, but I am still struggling to wrap my head around searching and filtering results/documents.
In a NoSQL world, how would I find all data within two timestamps for ...