Ömeriye Hamam

Ömeriye Hamam (lit. 'Ömeriye Bath') in Nicosia, Cyprus is a 14th-century building restored to operate once again as a hamam. Dating back to the period of French rule and located in the heart of Nicosia's old town is Hamam Omerye. The bath was closed in 2012 for renovation but is now open again as an active Turkish bath and beauty spa.

Ömeriye Hamam, Nicosia
Old Ömeriye Hamam, Nicosia
Ömeriye Hamam, Lying on the Hot Stone
Ömeriye Hamam

History of Ömeriye Hamam

The site's history dates back to the 14th century, when it stood as an Augustinian church of St. Mary. Stone-built, with small domes, it is chronologically placed at around the time of Frankish and Venetian rule, approximately the same time that the city acquired its Venetian Walls. In 1571, Mustapha Pasha converted the church into a mosque, believing that this particular spot is where the prophet Omer rested during his visit to Nicosia.

Most of the original building was destroyed by Ottoman artillery, although the door of the main entrance still belongs to the 14th century Lusignan building, whilst remains of a later Renaissance phase can be seen at the north-eastern side of the monument. In 2003, the [EU] funded a bi-communal UNDP/UNOPS project, "Partnership for the Future", in collaboration with Nicosia Municipality and Nicosia Master Plan, to restore the Omerye Bath.

Spa and wellness

The hamam is still in use today and after its recent restoration project, it has become a favourite place for relaxation in Nicosia. In 2006 it received the Europa Nostra prize for the Conservation of Architectural Heritage.

gollark: I've made a bit of a frontend for my search engine thing. Though it can't actually do search yet, only crawl/index/whatever pages.
gollark: Basically, if I want to run a search it just goes `SELECT * FROM page_tokens WHERE token = 'one token in search query'` or something like that, and it now has a list of pages with the right token, and SQLite can execute this query relatively fast.
gollark: I mean, as far as I can tell there isn't really a faster *and* more storage-efficient way to do search than the inverted-index page_tokens thing.
gollark: ```sqlCREATE TABLE crawl_queue ( id INTEGER PRIMARY KEY, url TEXT NOT NULL UNIQUE, lockTime INTEGER, added INTEGER NOT NULL, referrer TEXT);CREATE TABLE pages ( id INTEGER PRIMARY KEY, url TEXT NOT NULL UNIQUE, rawContent BLOB NOT NULL, rawFormat TEXT NOT NULL, textContent TEXT NOT NULL, updated INTEGER NOT NULL);CREATE TABLE page_tokens ( id INTEGER PRIMARY KEY, page INTEGER NOT NULL REFERENCES pages(id), token TEXT NOT NULL, weight REAL NOT NULL);CREATE TABLE links ( id INTEGER PRIMARY KEY, toURL TEXT NOT NULL, fromURL TEXT NOT NULL, lastSeen INTEGER NOT NULL, UNIQUE (toURL, fromURL))```Here is the database.
gollark: To be fair, the text content field isn't that necessary, as for search it uses the page_tokens table anyway and it can be rebuilt from the HTML if I need it.

References

    This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.