mobileFX WebKitX ActiveX
Advanced Topics / Loading Performance Tips
In This Topic
    Loading Performance Tips
    In This Topic

    Below are some performance optimizations tips for WebKitX:

    OnCreate switches the boost performance:

    OnCreate
    Copy Code
    Private Sub Editor_OnCreate(ByVal Settings As WebKitXCEF3Lib.ISettings, CommandLineSwitches As String)
        
        On Error Resume Next
          
        With Settings
            
            .app_path = FS.GetAbsolutePathName(App.Path)
    
            .accept_language_list = "es-CL,en-GB"
            .persist_session_cookies = 0
            .persist_user_preferences = 0
            .show_context_menu = False
            .asynchronous_com_events = True      
                
        End With
        
        CommandLineSwitches = CommandLineSwitches + " --no-proxy-server --disable-cache --disable-gpu-program-cache --disable-gpu-shader-disk-cache"
        CommandLineSwitches = CommandLineSwitches + " --disable-background-networking --disable-background-timer-throttling --disable-backgrounding-occluded-windows"
        CommandLineSwitches = CommandLineSwitches + " --disable-breakpad --disable-client-side-phishing-detection --disable-default-apps --disable-dev-shm-usage "
        CommandLineSwitches = CommandLineSwitches + " --disable-renderer-backgrounding --disable-sync --metrics-recording-only --no-first-run --no-default-browser-check"
        
    End Sub
    See Also