Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

C Examples

Web API Categories

ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Cloud Signature CSC
Code Signing
Compression
DKIM / DomainKey
DNS
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text
HTTP

HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
MHT / HTML Email
MIME
MS Storage Providers
Microsoft Graph
Misc
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
SharePoint
SharePoint Online
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl
uncategorized

 

 

 

(C) Large Persistent Hash Table Stored on Filesystem

Demonstrates how to implement a large, persistent hash table that is stored on the filesystem and allows for quick retrieval using a hash key.

Chilkat C/C++ Library Downloads

MS Visual C/C++

Linux/CentOS C/C++

Alpine Linux C/C++

MAC OS X C/C++

armhf/aarch64 C/C++

C++ Builder

iOS C/C++

Android C/C++

Solaris C/C++

MinGW C/C++

#include <C_CkCache.h>

void ChilkatSample(void)
    {
    HCkCache cache;
    const char *key;
    const char *eTag;
    const char *itemValue;
    BOOL success;

    // Let's say we would like to implement a persistent hash table with approximately 200,000 entries.
    // We want something simple and straightforward.
    // 
    // The Chilkat Cache class is a solution that might fit.
    // 
    // Each hash table entry is a file.  Depending on the number of anticipated hash entries,
    // the files can be contained in a single directory, or a collection of 256 directories,
    // or a collection of 256x256 directories.

    // There are 3 options:
    // 
    // Level 0: All cache files are in a single directory (the cache root).
    // Level 1: Cache files are located in 256 sub-directories numbered 0 .. 255 directly under the cache root.
    // Level 2: There are two levels of sub-directories under the cache root. 
    //          The 1st level has 256 sub-directories numbered 0 .. 255 directly under the cache root. 
    //          The 2nd level allows for up to 256 sub-directories (0..255) under each level-1 directory. 
    //          Cache files are stored in the leaf directories. 

    // For this example, given that we anticipate a larger number of hash entries, we choose a "level 2" cache.
    cache = CkCache_Create();

    // We can also spread the cache among several root directories, but for this example we'll only use one root directory.
    // Call AddRoot once for each root directory.
    CkCache_AddRoot(cache,"c:/temp/myCache");
    CkCache_putLevel(cache,2);

    // Add some key/values to the persisted hash table (i.e. the cache).
    // The eTag is optional metadata.
    key = "apple";
    eTag = "";
    itemValue = "macos";
    success = CkCache_SaveTextNoExpire(cache,key,eTag,itemValue);

    // Add more items..
    success = CkCache_SaveTextNoExpire(cache,"microsoft","","windows");
    success = CkCache_SaveTextNoExpire(cache,"google","","android");

    // Lookup items:
    key = "microsoft";
    itemValue = CkCache_fetchText(cache,key);
    printf("%s: %s\n",key,itemValue);

    key = "apple";
    itemValue = CkCache_fetchText(cache,key);
    printf("%s: %s\n",key,itemValue);


    CkCache_Dispose(cache);

    }

 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.