Is this SQL databases or No-SQL?
Is this SQL databases or No-SQL?
Posted Apr 15, 2014 15:27 UTC (Tue) by intgr (subscriber, #39733)In reply to: Is this SQL databases or No-SQL? by nix
Parent article: A discussion between database and kernel developers
I think you are misunderstanding. The "temporary indexes" you speak probably refers to explicitly created indexes CREATE TEMPORARY TABLE tables issued by the client. I guess you were reading this: http://www.postgresql.org/docs/current/static/runtime-con...
PostgreSQL can create temporary in-memory hash tables, do temporary sorts (such as for merge joins or ORDER BY) and mid-query materialization of intermediate results. Sorts and materialized results can spill out to disk when there isn't enough memory to keep them, but they aren't called "temporary indexes" since they don't resemble actual index data structures.
