问题
Watching many examples in Hyperledger Fabric I found two ways to achieved a key:
Let's suposse we have two fields visa and type of visa.
Visa: "1212323"
Type of Visa: "Student Visa"
So we can create a key neither:
- Using CompositeKey function provide by stub
key, err := stub.CreateCompositeKey(indexName,[]string{visa, typeVisa})
stub.PutState(key, value)
- Concatenating the two fields
stub.PutState(visa+typeVisa, value)
What is the difference between those two approaches? What is the best performance?
回答1:
By using Composite Keys you will have access to extra methods in your chaincode e.g. getStateByPartialCompositeKey
so you could potentially retrieve all "Student Visa". If you make your own keys you would have to retrieve all the Visas then filter the set youself, or write queries to retrieve the data by attributes (assuming you are using JSON data in a CouchDB state database.) . So I would think the performance differential is in efficient retrieval rather than the original writing of the keys.
There is a good doc in the Fabric docs on CouchDB as the State Database which covers this information.
来源:https://stackoverflow.com/questions/55360962/composite-key-vs-single-key-append-strings