What Is Materialization? Spiritualism, Physics & Computing

Materialization has several distinct meanings depending on the context. In its broadest sense, it refers to something becoming real, physical, or visible. The term appears in spiritualist traditions (where spirits supposedly take physical form), in physics (where energy converts into matter), and in computing (where query results are stored as physical data). Each usage shares a core idea: something abstract or invisible becomes concrete and tangible.

Materialization in Spiritualism

The most dramatic historical use of “materialization” comes from 19th-century spiritualism, where it described the alleged appearance of spirits in physical form during séances. In the middle of the 1800s, luminous full-bodied phantoms reportedly emerged from a “medium’s cabinet,” a concealing cupboard or curtained space that was standard equipment at certain types of séances. These phantoms would supposedly perch on the knees of Victorian gentlemen or caress the faces of people seeking contact with deceased loved ones.

By the 1890s, the phenomenon shifted from full-body apparitions to something stranger. Mediums began producing thick slabs of pale, curdled substance from their bodily orifices, accumulating in clumps on their shoulders, on the séance table, or on the floor. The Nobel laureate physiologist Charles Richet gave this substance its lasting name: ectoplasm. Before Richet’s term caught on, it had been called “soul substance,” “biogen,” and “psychoplasm” by various researchers and believers.

Before ectoplasm was ever seen, it was experienced as a phantom touch in the dark or a mysterious force that tipped tables. The Italian medium Eusapia Palladino was known for producing large wandering extensions of ectoplasm that could knock over furniture. Arthur Conan Doyle, creator of Sherlock Holmes and one of the era’s most zealous spiritualists, traced the phenomenon back to the 18th-century mystic Emmanuel Swedenborg, who described feeling “a kind of vapour steaming from the pores of my body” during a reported angelic visitation. Nearly all materialization phenomena from this era were later debunked as fraud, with mediums caught using cheesecloth, rubber gloves, and other props to simulate spirit appearances.

Materialization in Physics

In physics, materialization refers to energy converting into matter, the most fundamental version of something coming into physical existence. The best-known mechanism is pair production: when a high-energy photon (a particle of light) passes close to an atomic nucleus, it can transform into an electron and its antimatter counterpart, a positron. This only happens when the photon carries enough energy, at least 1.022 million electron volts (MeV). The probability of this conversion increases with the photon’s energy and with the size of the nearby nucleus.

A related process called triplet production occurs at even higher energies, above 2.044 MeV. In this case, the photon interacts with the electric field of an orbiting electron rather than the nucleus itself, and the conversion produces three visible particle tracks: the new electron, the new positron, and the recoiling atomic electron that was already there.

These processes are direct demonstrations of Einstein’s famous equation relating energy and mass. They happen routinely inside particle detectors at high-energy physics laboratories and in natural settings like the upper atmosphere, where cosmic rays carry enough energy to produce matter from light. Physicists have long been interested in the Breit-Wheeler process, a theoretical mechanism where two photons collide to produce an electron-positron pair without needing a nearby nucleus at all. Experimental verification of this pure light-to-matter conversion remains an active area of research at major particle physics facilities.

Materialized Views in Computing

In databases and data science, materialization takes on a precise technical meaning. A materialized view is a database object that stores the results of a query as a physical table. Think of it as a saved answer: instead of recalculating complex data every time someone asks the same question, the database stores the result and serves it instantly.

This is different from a standard database view, which is virtual. A regular view doesn’t store any data. Every time you query it, the database goes back to the original tables and recalculates the answer from scratch. For simple queries, this works fine. For complex queries involving large datasets, it can be painfully slow. A materialized view solves this by doing the heavy computation once and keeping the result on disk, ready to serve immediately.

The Freshness Tradeoff

The catch is data freshness. A regular view always reflects the current state of the underlying data because it pulls from the source tables in real time. A materialized view can become stale because it’s a snapshot. If the source data changes, the materialized view still shows the old results until it’s refreshed.

Refresh strategies vary. A complete refresh reruns the entire defining query from scratch, which can be slow when the database has to read and process massive amounts of data. An incremental refresh (sometimes called a FAST refresh) is more efficient: it only processes the changes that occurred since the last refresh, which can cut refresh times dramatically. Some systems also support out-of-place refresh, where a new copy of the materialized view is built in the background while the old copy continues serving queries, keeping the data available with no downtime during the update.

Organizations typically use materialized views in data warehousing and reporting, where the same complex aggregations are queried repeatedly and a slight delay in data freshness is acceptable. The tradeoff is straightforward: materialized views use more storage space and require a refresh schedule, but they deliver significantly faster query performance for the kinds of heavy computations that would otherwise slow a system down.

The Common Thread

Across all these domains, materialization carries the same core meaning: making something abstract into something concrete. Spiritualists claimed to make the invisible spirit world physically present. Physics describes how pure energy becomes tangible particles with mass. Databases turn fleeting calculations into stored, physical data. The word always points to the same transformation, from the intangible to the real.