See this page
Those should be automatically enabled by default
when using CassandraTemplate
. As for the repository, there's not much to prepare, but still not clear if they are used.
Check getLineageById
defined in TaxonRepository
: is it the right place?
Does that somehow generate multiple Session objects? If so, how to avoid?
Is @Autowired
optional e.g. in DataLoader
? If so, to what extent can it be dropped elsewhere?
(in other words: how much freedom/cleverness does the IOC controller afford?)
Index on name
is case-insensitive, but that does not seem to have any effect.
If querying on name = 'Pholcidae'
a match is found, if = 'pholcidae'
it isn't.
Same in CQL console.
Compare the output of
curl -i "localhost:8080/taxa/aa"
curl -i "localhost:8080/taxa/aa dd"
the second retuns an HTML error page, the first does not. Why?