We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi Dario,
Is it possible to create a spatial index in a model definition?
module.exports = { attributes: { id: { type: 'string', primaryKey: true, columnName: '@rid'}, latitude: {type: 'float'}, longitude: {type: 'float'} /*How to define spatial index*/ } };
The spatial index on the orientdb-lucene example shows that you create a compound key
E.G CREATE INDEX Place.l_lon ON Place(latitude,longitude) SPATIAL ENGINE LUCENE
I was wondering can this be done.
https://github.com/orientechnologies/orientdb-lucene/wiki/Spatial-Index
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi Dario,
Is it possible to create a spatial index in a model definition?
The spatial index on the orientdb-lucene example shows that you create a compound key
E.G
CREATE INDEX Place.l_lon ON Place(latitude,longitude) SPATIAL ENGINE LUCENE
I was wondering can this be done.
https://github.com/orientechnologies/orientdb-lucene/wiki/Spatial-Index
The text was updated successfully, but these errors were encountered: