Lucene.Net.Codecs.Lucene3x.Lucene3xFields.RamBytesUsed C# (CSharp) Méthode

RamBytesUsed() public méthode

public RamBytesUsed ( ) : long
Résultat long
        public override long RamBytesUsed()
        {
            if (Tis != null)
            {
                return Tis.RamBytesUsed();
            }
            else
            {
                // when there is no index, there is almost nothing loaded into RAM
                return 0L;
            }
        }