Simstring matcher uses 'sets' to store strings, but 'sets' are not supported by all serializers. We have to specifically use 'pickle' serializer.
The issue is that 'sets' is the correct data structure to use (performance is hindered substantially if other collection data structures are used instead).
Simstring matcher uses 'sets' to store strings, but 'sets' are not supported by all serializers. We have to specifically use 'pickle' serializer.
The issue is that 'sets' is the correct data structure to use (performance is hindered substantially if other collection data structures are used instead).