Update
isi
[
bersembunyi
]
Update()
Memperbarui semua indeks di repositori.
public void Update()
Contoh
Contoh menunjukkan cara mengupdate indeks di repositori.
string indexFolder = @"c:\MyIndex\";
string documentsFolder = @"c:\MyDocuments\";
IndexRepository repository = new IndexRepository();
Index index = repository.Create(indexFolder); // Membuat indeks
index.Add(documentsFolder); // Pengindeksan dokumen
// Hapus dokumen dari folder dokumen atau ubah atau tambahkan dokumen baru ke folder
repository.Update();
Lihat juga
- class IndexRepository
- ruang nama GroupDocs.Search
- perakitan GroupDocs.Search
Update(UpdateOptions)
Memperbarui semua indeks di repositori.
public void Update(UpdateOptions options)
Parameter | Jenis | Keterangan |
---|---|---|
options | UpdateOptions | Opsi pembaruan. |
Contoh
Contoh menunjukkan cara mengupdate indeks di repositori.
string indexFolder = @"c:\MyIndex\";
string documentsFolder = @"c:\MyDocuments\";
IndexRepository repository = new IndexRepository();
Index index = repository.Create(indexFolder); // Membuat indeks
index.Add(documentsFolder); // Pengindeksan dokumen
// Hapus dokumen dari folder dokumen atau ubah atau tambahkan dokumen baru ke folder
UpdateOptions options = new UpdateOptions();
options.Threads = 2; // Mengatur jumlah utas pengindeksan
repository.Update(options);
Lihat juga
- class UpdateOptions
- class IndexRepository
- ruang nama GroupDocs.Search
- perakitan GroupDocs.Search