Clob or Blob support for Neo4j -


  1. Does Neo4j support Clab or Blob datatype? I reviewed the documentation, but found that Neo4j supports only primitive datatages in the form of nodes or properties of relationships.
  2. Do we have any restrictions for the number of properties, can be node or relative? What is the optimum size for this?
  3. You can get it, it addresses many scalability issues.

    An important quote, which gets your question:

    Neo4j is currently not suitable for storing Blobs / CLOB. I nodes, relation, and property disks But are not co-located. This can be presented in the future.

    Now, you can use on a node to store a byte [] or string . , So in this sense you can store arbitrary binary objects or strings.

    But archiving very large objects like above a certain size might not really be a good idea. What is the limit of that size? Unfortunately I do not know if someone else can jump there with some advice or guidance. Probably, at some point, performance may start to degrade in some way, and definitely to set up the property, the object will need to fit into memory in the question.


Comments

Popular posts from this blog

java - Can't add JTree to JPanel of a JInternalFrame -

javascript - data.match(var) not working it seems -

javascript - How can I pause a jQuery .each() loop, while waiting for user input? -