graph - Neo4j for an Image database - performance considerations -


i'm looking @ building image database consists of nodes uuid field , other image properties such exif data. i'll search image nodes via uuid field have index.

match (img:image {id: "ea191df3-f5e5-4a29-ae93-f850866f90d1"}) return img;

are there performance disadvantages doing in neo4j?

assuming create uniqueness constraint via create constraint on (image:image) assert image.id unique, proposing makes perfect sense. such constraint not enforces id uniqueness, creates id index automatically.

there cost updating index every time add image (or change image id), unless have many more updates searches, savings when searching image should far exceed cost.


Comments

Popular posts from this blog

javascript - How to synchronize the Three.js and HTML/SVG coordinate systems (especially w.r.t. the y-axis)? -

javascript - How do I find how many occurences are there of a highlighted string, and which occurence is it? -

java - Reading data from multiple zip files and combining them to one -