in clay/stats.py [0:0]
def unique_set(key, value):
'''
Send a set stat to statsd, counting the approximate number of unique
key/value pairs.
:param key: Name of this set
:type key: string
:param value: Set value
:type value: string
'''
return connection.send('%s:%s|s' % (key, value))