95427:M 22 Jan 2019 16:41:47.347 # Server initialized
95427:M 22 Jan 2019 16:41:47.348 * RediSearch version 1.4.2 (Git=v1.4.2-141-g18ea318e)
95427:M 22 Jan 2019 16:41:47.348 * concurrency: ON, gc: ON, prefix min length: 2, prefix max expansions: 200, query timeout (ms): 500, timeout policy: return, cursor read size: 1000, cursor max idle (ms): 300000, max doctable size: 1000000, search pool size: 20, index pool size: 8,
95427:M 22 Jan 2019 16:41:47.350 * Initialized thread pool!
95427:M 22 Jan 2019 16:41:47.350 * Module ‘ft’ loaded from ./redisearch.so
95427:M 22 Jan 2019 16:41:47.350 * Ready to accept connections
But the Partial update a document doesn’t work:
127.0.0.1:6379> FT.CREATE idx SCHEMA name TAG
OK
127.0.0.1:6379> FT.ADD idx doc1 0.8 FIELDS name “Harry Potter”
Its not a bug, when you delete a document its only delete it from the index but it does not delete the content and this is why you find it with FT.GET.
Use the DD option to delete the content as well:
FT.DEL idx doc1 DD