previously i was using Master slave configuration, in which i was querying every slave after indexing it to make sure my changes are reflected on every Slave. first i was requesting with
SlaveSolrURL/replication?command=fetchindex and checking if status is OK
then i was querying following in a loop
SlaveSolrURL/q=QueryForMyChange and breaking my loop when i get expected result
and then enabling Slave for Querying.
How can i do this functionality in SolrCloud, to make sure my changes are replicated across every replica, i am using single Shard only.