Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用图形数据库 neo4j 来存储数据。我需要 Neo4j 中的三个值用于每个节点并索引到 mysql 中。
这三个值将是整数或长类型,这三个数字将有数百万组。据我了解,在mysql中,我们需要创建一个表,然后索引它的列。
这里可以说,我创建了一个表“test”和 int1、int2 和 int3 作为列名,然后我可以索引这些列。
问题是: - 这增加了不必要的内存需求,表和索引都占用了内存。
有没有办法在mysql中创建索引而不创建表?