Getting Started with DeskDirector
Pricing & Subscription Plans
Browser Support
Deskdirector - Sign up walk through
Managing your DeskDirector Subscription
Logging in to DeskDirector
Automatic Contact Creation
What is the DeskDirector Admin Portal?
What is the DeskDirector Tech Portal?
What is the DeskDirector Client Portal?
DeskDirector Roles and Permissions
Feature Configuration for PSA Integrations
Tickets & Chats
A walk through all the fields available in DeskDirector forms
Getting Started with Custom Branding
Getting Started with Custom Email Templates
Getting Started with Surveys
Notifications & Broadcasts
Getting Started with the Menu System
BiggerBrains & Learning Center
The Developer Corner
Embedding Help Page Media
Permissions in DeskDirector
Managing Contacts
Tickets Access
Profile Pictures
Office Hours
How User Authentication works in DeskDirector
Getting Started with Searching in DeskDirector
Managing Members/Resources Profile
Enabling Master Admin
Get started with the DeskDirector Power Automate Connector
Top 10 Request Types
Using Markdown
Desktop Portal (Installed client) Vs. Web Portal (Web Client)
Managing Company Accounts
Monitoring Portal Usage
Service Radar
DeskDirector Desktop Portal
Main Tabs vs Ticket Tabs
Auditing and Analytics
Tech Portal Board/Queue Access Configuration
Installing the Desktop Portal
Features
Portal Customization
Service Catalogue
Forms
Getting started with DeskDirector Forms
DeskDirector Forms - Question Types in Detail
Dynamic Form Content
Communication
Actionable Messages for Emails
Real-Time Chats
Notifications
Email Notifications
Email Template Engine
Surveys
Broadcasts
Generative AI
DeskDirector with Generative AI
Setting up AI Service Providers
AI Assistants in DeskDirector
Custom Tools for AI Assistants
Knowledge Bases for AI Assistants
Ticket Summary for Tech Portal
Login & Authentication
Contact & User Groups
Approvals
Task Lists
Easy Integrations
Analytics
Dynamic Ticket Contents
The Learning Center
Webhooks
Events & Workflows
Group Tags
Custom Domains
File Storage
Integrations
ConnectWise
ConnectWise Custom Menu Item for DeskDirector
ConnectWise
ConnectWise Quotes & Invoices
StreamlineIT for DeskDirector Tech Portal
ConnectBooster
ConnectWise Sell
ConnectWise - Avoid Aggressive Notifications
AutoTask
QuoteWerks
Wise-Pay
TimeZest
BiggerBrains
OneNote Notebooks
Integrations - Frequently Asked Questions
Microsoft Teams App
Introducing the DeskDirector for Microsoft Team App
Setting up Content Security Policy (CSP)
Installing the Microsoft Teams App (Tech)
Setting up Tags for Teams Discussions (Tech)
Setting up DeskDirector for Microsoft Teams for your clients (Client mode)
Branding the DeskDirector Teams App
DeskDirector Teams App Notifications
User Groups Integration with Microsoft Teams
Troubleshooting
Advanced topic: Setting up Tech & Client Mode in the same tenancy
Integrating Microsoft Teams with DeskDirector Tech Portal
Smart Alerts for Tech Users
Microsoft Power Automate
Actions
Solutions
Power Automate Template Gallery
Featured Solution: Teams Ticket Discussion
Featured Solution: Ticket Briefing
Introduction to Power Automate
Power Automate Connector - Setting up your first flow
DeskDirector Power Platform Connector Reference
DeskDirector Connector Triggers
Troubleshooting
Troubleshooting via Web Developer Tools
Desktop Portal - Common Issues
Contact & Service Agent Impersonation
Diagnose Entities Tool
DeskDirector Desktop App - Installation Issues
Troubleshooting DeskDirector Connection Issues
Login & Authentication - Common Issues
Permissions & Access - Common Issues
Tickets & Chats - Common Issues
Approvals - Common Issues
Email & Email Delivery - Common Issues
PSA Entity Syncing - Common Issues
PSA Integration - Common Issues
ConnectWise Integration - Common Issues
Autotask Integration - Common Issues
Switching PSA or merging with another CW/AT instance
ConnectWise Audit Trail - Exporting API Logs
Contact DeskDirector Support
Advanced Use
DeskDirector API
Subscribing to Chat Webhooks
Portal Deep Linking
Webhook Example with Zapier
Chat Session Payload
Get started with portal extension page demo
Dynamic content based on logged in user
Clean Tickets
Exporting Portal Usage
Security
Glossary
Release Notes
Client Portal
Server
Tech Portal
Portal Release Notes - Windows/macOS
Differences Between different Desktop Portal version
Release Notes - DeskDirector Teams App
Portal Release Notes - Web Client
Release Notes in the Admin Portal
Archived
Table of Contents
- All Categories
- Getting Started with DeskDirector
- Getting Started with Searching in DeskDirector
Getting Started with Searching in DeskDirector
Updated
by Niamh Ferns
How Searching Works in DeskDirector
In all products DeskDirector has created, we use full-text search for all list interface. Different to traditional contains or start with approach, full-text search provide flexibility that traditional approach cannot compete. It is also not perfect, it has trade off.
More info regarding to this technology you can check out wikipedia page.
How do indexing and tokenization work?
For each collection, we will mark few property as query fields. Information within will be tokenized and indexed by the database. Different to traditional database, full-text search requires breaking down information into tokens. When search, we are search on tokens instead of sentence.
Basic tokenization for English is split information by space, special chars and new lines. All tokens are case insensitive.
The quick brown fox jumped over the lazy dogs, Bob@hotmail.com 123432.
Above sentence will produce following tokens:
[quick] [brown] [fox] [jumped] [over] [lazy] [dog] [bob@hotmail.com] [123432]
How does the system determine a most matched object?
When DeskDirector analyses search terms, it will tokenize the search string. It will match on two different criteria and the highest rating will be returned at start.
- Any token that's exactly matched will give rating of 2
- Any token that's start with search term will give rating of 1.
- Repeat match will increase it's total rating.
For example, we have two user with following name.
- Jamison Knight / jknight@example.com from Euro Health Center
- Jamison Coon / jamison@secondcompany.com from Europtimum
Scenario:
Search term: Euro Jamison will give 4 rating for Jamison Knight and 3 rating for Jamison Coon. Since Jamison Coon only has start with match with Europtimum, while Jasmison Knight has exactly match with Euro.
What kind of terms we can we use for different collections?
DeskDirector has put a lot of effort to analyze the important fields that should be included inside index. I will summarize them below.
- Company / Account: name, identifier
- Contact: first name, last name, primary email, secondary emails, title, email domain.
- Member / Resource: first name, last name, primary email, secondary emails, identifier
- Ticket: tittle, initial description, identifier
Frequently Asked Questions
"How many terms can we include in search?"
Same as many other full-text search implementation. You can include as many terms as you like to. You can event type in sentence.
"Why cannot we add sorting to search result?"
Without search, sorting is allowed. With search, sorting will only create confusion. For example, if sort result by text, then higher rating result could end up on page 2 or 4.
That is the reason why full-text search never allow ordering. e.g. Google
"When I search contact, there could be result from different companies. How do I improve accuracy?"
You can add email as addition to existing search term, you can also add company filter. That way, only contact from that company will be returned.
"How come there are many false-positives?"
Full-text searching is likely to retrieve many documents that are not relevant to the intended search question. Such documents are called false positives. They often appear at end of search results, where they are partially matched with search terms.