Yes you dont have to re-index all the content again and again. You can simply index the latest content on top of previously indexed items.
Plain Text
# Current Index
index = VectorStoreIndex.from_documents()
# new docs
documents = SimpleDirectoryReader('dir_name').load_data()
# Insert new docs into existing index
for doc in documents:
index.insert(doc)