I would like to know if there is a difference between int property or a string property in the following scenario:
I have multiple relations and every one of them have an "index" property.
Until now i have had strings of int in the property - "1", "12", "63".
Here is my question - Is there a difference between my current scenario to a scenario that the property is of type int?
If there is a difference, what is it?
I don't know how extra process Neo4j is doing on ints and strings but
I think int is better because it uses just 8 bytes, also usually most of its bits are 0, so needs lesser processes.