Saving Images in Neo4J

As I should use Neo4J in one of my projects, I tried to get some ideas on it. It stores values ​​in key-value pairs. But I do not understand one thing, how to store images? In some situations, we store the URL of the corresponding images in the DBMS. But in the Graph databases, what are the tricks? Please give me a link to good articles or answer clearly. Thanks.

+6
source share
1 answer

Do you really need to save the entire image, or can you save the reference identifier of the image that exists on disk?

I ask this question because most likely you are going to store it as a byte array in the database, and if you are never going to use the byte array for your analysis, then you can just save the Help.

If you use it for comparison, try repeating the warning, you can always save MD5 or something else.

Why do you need to save the image in the database?

+7
source

All Articles