Click here to Skip to main content
15,895,799 members
Articles / Programming Languages / C#

hOOt - full text search engine

Rate me:
Please Sign up or sign in to vote.
4.92/5 (156 votes)
24 Feb 2019CPOL17 min read 1.1M   22.5K   388  
Smallest full text search engine (lucene replacement) built from scratch using inverted MGRB bitmap index, highly compact storage, operating in database and document modes
namespace RaptorDB
{
    /// <summary>
    /// High frequency mode Key/Value store with recycled storage file.
    /// <para>Use for rapid saves of the same key.</para>
    /// <para>Views are not effected by saves in this storage.</para>
    /// <para>NOTE : You do not have history of changes in this storage.</para>
    /// </summary>
    public interface IKeyStoreHF
    {
        object GetObjectHF(string key);
        bool SetObjectHF(string key, object obj);
        bool DeleteKeyHF(string key);
        int CountHF();
        bool ContainsHF(string key);
        string[] GetKeysHF();
        void CompactStorageHF();
        int Increment(string key, int amount);
        decimal Increment(string key, decimal amount);
        int Decrement(string key, int amount);
        decimal Decrement(string key, decimal amount);
        //T Increment<T>(string key, T amount);
        //T Decrement<T>(string key, T amount);
        //IEnumerable<object> EnumerateObjects();
        //string[] SearchKeys(string contains); // FIX : implement 
    }

    internal enum RDBExpression
    {
        Equal,
        Greater,
        GreaterEqual,
        Less,
        LessEqual,
        NotEqual,
        Between,
        Contains
    }

    internal interface IIndex
    {
        void Set(object key, int recnum);
        //WAHBitArray Query(object fromkey, object tokey, int maxsize);
        WAHBitArray Query(RDBExpression ex, object from, int maxsize);
        void FreeMemory();
        void Shutdown();
        void SaveIndex();
        object[] GetKeys();
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect -
United Kingdom United Kingdom
Mehdi first started programming when he was 8 on BBC+128k machine in 6512 processor language, after various hardware and software changes he eventually came across .net and c# which he has been using since v1.0.
He is formally educated as a system analyst Industrial engineer, but his programming passion continues.

* Mehdi is the 5th person to get 6 out of 7 Platinum's on Code-Project (13th Jan'12)
* Mehdi is the 3rd person to get 7 out of 7 Platinum's on Code-Project (26th Aug'16)

Comments and Discussions