How to choose an in-memory NoSQL solution: Performance measuring
11–20 of 33 posts
Re: How to choose an in-memory NoSQL solution: Performance measuring
#12Anyway, cool post. For more lua, there's openresty (nginx and lua), and kyototycoon supports lua scripts as well.
Re: How to choose an in-memory NoSQL solution: Performance measuring
#13and later
> Through all tests we executed, Tarantool showed the best result for the count requests per second and for many of tests latency values on any type of examined workloads. Therefore, we can decide that for most of typical projects Tarantool suits them more that popular solutions such as Redis, CouchBase or Memcached. This is the basis of our decision to use Tarantool for our projects here at my.com.
So yeah. Obviously.
Re: How to choose an in-memory NoSQL solution: Performance measuring
#14Re: How to choose an in-memory NoSQL solution: Performance measuring
#15Re: How to choose an in-memory NoSQL solution: Performance measuring
#16Postgres is also a good in-memory NoSQL solution. Actually you can use anything really as an in-memory NoSQL solution such as ArangoDB, MySQL, MongoDB, RethinkDB or whatever.
If you do mean using a ramdisk tablespace, the postgres docs recommend not doing that. However, if you really want to do that, make sure you attach xlog (the WAL table) to that ramdisk tablespace as well, otherwise every transaction will still hit the disk.
Re: How to choose an in-memory NoSQL solution: Performance measuring
#17Postgres is also a good in-memory NoSQL solution. Actually you can use anything really as an in-memory NoSQL solution such as ArangoDB, MySQL, MongoDB, RethinkDB or whatever.
Do you mean using postgres tablespaces backed by memory or do you mean using a FDW? If you do mean using a ramdisk tablespace, the postgres docs recommend not doing that. However, if you really want to do that, make sure you attach xlog (the WAL table) to that ramdisk tablespace as well, otherwise every transaction will still hit the disk.
Re: How to choose an in-memory NoSQL solution: Performance measuring
#18Re: How to choose an in-memory NoSQL solution: Performance measuring
#19It's a bit fishy that the leading one is by the guys who wrote the article, see https://news.ycombinator.com/item?id=10814318