Hi,
Why are you not using syntax ?
using (Index index = .... ) {
index.optimize();
}
in every example you just run index.optimize() outside the using syntax, but Index is implementing IDisposable. So there can be memory leaks. But when we run it in USING syntax then after optimization index is empty.
Can you say something about it?
Hi,
Why are you not using syntax ?
using (Index index = .... ) {
index.optimize();
}
in every example you just run index.optimize() outside the using syntax, but Index is implementing IDisposable. So there can be memory leaks. But when we run it in USING syntax then after optimization index is empty.
Can you say something about it?