-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcache-demo.html
More file actions
413 lines (348 loc) Β· 12.4 KB
/
Copy pathcache-demo.html
File metadata and controls
413 lines (348 loc) Β· 12.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Unified Cache System Demo</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
max-width: 1000px;
margin: 0 auto;
padding: 20px;
background: #f5f5f5;
}
.header {
text-align: center;
margin-bottom: 30px;
}
.cache-type-selector {
background: white;
padding: 20px;
border-radius: 8px;
margin-bottom: 20px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.cache-type-selector h3 {
margin-top: 0;
color: #333;
}
.cache-options {
display: flex;
gap: 15px;
flex-wrap: wrap;
}
.cache-option {
padding: 10px 20px;
border: 2px solid #ddd;
border-radius: 6px;
cursor: pointer;
background: white;
transition: all 0.3s;
}
.cache-option:hover {
border-color: #007bff;
}
.cache-option.active {
border-color: #007bff;
background: #007bff;
color: white;
}
.test-section {
background: white;
padding: 20px;
border-radius: 8px;
margin-bottom: 20px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.test-controls {
margin-bottom: 20px;
}
.test-input {
width: 300px;
padding: 10px;
border: 1px solid #ddd;
border-radius: 4px;
margin-right: 10px;
}
.btn {
padding: 10px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
font-weight: 600;
margin-right: 10px;
}
.btn-primary { background: #007bff; color: white; }
.btn-success { background: #28a745; color: white; }
.btn-warning { background: #ffc107; color: black; }
.btn-danger { background: #dc3545; color: white; }
.btn:hover { opacity: 0.9; }
.results {
background: #f8f9fa;
border: 1px solid #dee2e6;
border-radius: 4px;
padding: 15px;
margin-top: 15px;
font-family: 'Courier New', monospace;
font-size: 14px;
max-height: 300px;
overflow-y: auto;
}
.stats {
background: #e7f3ff;
border: 1px solid #b3d9ff;
border-radius: 4px;
padding: 15px;
margin-top: 15px;
}
.loading {
color: #007bff;
font-style: italic;
}
.error {
color: #dc3545;
font-weight: bold;
}
.success {
color: #28a745;
font-weight: bold;
}
.performance-comparison {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
margin-top: 20px;
}
.performance-card {
background: white;
padding: 15px;
border-radius: 6px;
border-left: 4px solid #007bff;
}
.performance-card h4 {
margin-top: 0;
color: #333;
}
</style>
</head>
<body>
<div class="header">
<h1>ποΈ Unified Cache System Demo</h1>
<p>Test different cache backends: Auto-detect, File-based, IndexedDB, or No Cache</p>
</div>
<div class="cache-type-selector">
<h3>Select Cache Type</h3>
<div class="cache-options">
<div class="cache-option active" data-cache-type="auto">
π Auto-Detect
<small><br>Automatically choose best cache for environment</small>
</div>
<div class="cache-option" data-cache-type="indexeddb">
π IndexedDB
<small><br>Browser persistent storage</small>
</div>
<div class="cache-option" data-cache-type="file">
π File Cache
<small><br>Node.js file system (will fail in browser)</small>
</div>
<div class="cache-option" data-cache-type="none">
π« No Cache
<small><br>Disable caching completely</small>
</div>
</div>
</div>
<div class="test-section">
<h3>π§ͺ Cache Performance Test</h3>
<div class="test-controls">
<input type="text" id="testQuery" class="test-input" placeholder="Enter search query (e.g., Einstein)" value="Einstein">
<button class="btn btn-primary" onclick="runSingleTest()">π Test Query</button>
<button class="btn btn-success" onclick="runPerformanceTest()">β‘ Performance Test</button>
<button class="btn btn-warning" onclick="showCacheStats()">π Cache Stats</button>
<button class="btn btn-danger" onclick="clearCache()">ποΈ Clear Cache</button>
</div>
<div id="testResults" class="results" style="display: none;"></div>
<div id="cacheStats" class="stats" style="display: none;"></div>
</div>
<div class="performance-comparison" id="performanceComparison" style="display: none;">
<div class="performance-card">
<h4>π First Run (Cold Cache)</h4>
<div id="coldResults"></div>
</div>
<div class="performance-card">
<h4>β‘ Second Run (Warm Cache)</h4>
<div id="warmResults"></div>
</div>
</div>
<script type="module">
import { TextToQPTransformer } from './js/src/transformation/text-to-qp-transformer.js';
import { CacheFactory } from './js/src/wikidata-api-browser.js';
let currentTransformer = new TextToQPTransformer();
let currentCacheType = 'auto';
// Initialize cache type selector
document.querySelectorAll('.cache-option').forEach(option => {
option.addEventListener('click', () => {
// Update active state
document.querySelectorAll('.cache-option').forEach(opt => opt.classList.remove('active'));
option.classList.add('active');
// Update cache type
currentCacheType = option.dataset.cacheType;
updateCacheType(currentCacheType);
});
});
function updateCacheType(cacheType) {
console.log(`Switching to cache type: ${cacheType}`);
try {
// Create new API client with selected cache type
currentTransformer.searchUtility.apiClient.setCacheType(cacheType);
showResult(`β
Switched to ${cacheType} cache`, 'success');
} catch (error) {
showResult(`β Error switching cache: ${error.message}`, 'error');
}
}
window.runSingleTest = async function() {
const query = document.getElementById('testQuery').value.trim();
if (!query) {
showResult('Please enter a search query', 'error');
return;
}
showResult('π Testing query...', 'loading');
const startTime = Date.now();
try {
const result = await currentTransformer.transform(query, {
maxCandidates: 3,
includeLabels: false,
searchLimit: 8
});
const endTime = Date.now();
const duration = endTime - startTime;
const output = `
Query: "${query}"
Cache Type: ${currentCacheType}
Result: "${result.formatted}"
Duration: ${duration}ms
Sequence Length: ${result.sequence.length}
Tokens: [${result.tokens.join(', ')}]
`.trim();
showResult(output, 'success');
} catch (error) {
showResult(`β Error: ${error.message}`, 'error');
}
};
window.runPerformanceTest = async function() {
const query = document.getElementById('testQuery').value.trim();
if (!query) {
showResult('Please enter a search query', 'error');
return;
}
showResult('π Running performance test (2 runs)...', 'loading');
document.getElementById('performanceComparison').style.display = 'none';
const testOptions = {
maxCandidates: 3,
includeLabels: false,
searchLimit: 8
};
try {
// First run (cold cache)
console.log('Starting cold run...');
const coldStart = Date.now();
const coldResult = await currentTransformer.transform(query, testOptions);
const coldEnd = Date.now();
const coldDuration = coldEnd - coldStart;
// Small delay between runs
await new Promise(resolve => setTimeout(resolve, 500));
// Second run (warm cache)
console.log('Starting warm run...');
const warmStart = Date.now();
const warmResult = await currentTransformer.transform(query, testOptions);
const warmEnd = Date.now();
const warmDuration = warmEnd - warmStart;
// Calculate speedup
const speedup = coldDuration / Math.max(warmDuration, 1);
const timeSaved = coldDuration - warmDuration;
const percentSaved = ((timeSaved / coldDuration) * 100);
// Display results
document.getElementById('coldResults').innerHTML = `
<strong>Duration:</strong> ${coldDuration}ms<br>
<strong>Result:</strong> "${coldResult.formatted}"<br>
<strong>Sequence:</strong> ${coldResult.sequence.length} items
`;
document.getElementById('warmResults').innerHTML = `
<strong>Duration:</strong> ${warmDuration}ms<br>
<strong>Result:</strong> "${warmResult.formatted}"<br>
<strong>Sequence:</strong> ${warmResult.sequence.length} items<br>
<br>
<strong>π Speedup:</strong> ${speedup.toFixed(1)}x faster<br>
<strong>β±οΈ Time Saved:</strong> ${timeSaved}ms (${percentSaved.toFixed(1)}%)
`;
document.getElementById('performanceComparison').style.display = 'grid';
showResult(`β
Performance test completed! Speedup: ${speedup.toFixed(1)}x`, 'success');
} catch (error) {
showResult(`β Performance test failed: ${error.message}`, 'error');
}
};
window.showCacheStats = async function() {
try {
showResult('π Getting cache statistics...', 'loading');
const apiClient = currentTransformer.searchUtility.apiClient;
const stats = await apiClient.cache.getStats();
let statsHtml = `<h4>Cache Statistics (${currentCacheType})</h4>`;
if (stats.memoryCache) {
statsHtml += `
<strong>Memory Cache:</strong><br>
β’ Items: ${stats.memoryCache.size}/${stats.memoryCache.maxSize}<br>
β’ Usage: ${((stats.memoryCache.size/stats.memoryCache.maxSize)*100).toFixed(1)}%<br><br>
`;
}
if (stats.fileCache) {
statsHtml += `
<strong>File Cache:</strong><br>
β’ Files: ${stats.fileCache.fileCount}<br>
β’ Size: ${stats.fileCache.totalSizeMB} MB<br>
`;
if (stats.fileCache.oldestFile) {
const ageMinutes = Math.round(stats.fileCache.oldestFile.age / (1000 * 60));
statsHtml += `β’ Oldest: ${ageMinutes} minutes ago<br>`;
}
}
if (stats.dbCache) {
statsHtml += `
<strong>Database Cache (${stats.dbCache.type}):</strong><br>
β’ Entries: ${stats.dbCache.size}<br>
`;
if (stats.dbCache.oldestEntry) {
const ageMinutes = Math.round(stats.dbCache.oldestEntry.age / (1000 * 60));
statsHtml += `β’ Oldest: ${ageMinutes} minutes ago<br>`;
}
}
document.getElementById('cacheStats').innerHTML = statsHtml;
document.getElementById('cacheStats').style.display = 'block';
showResult('β
Cache statistics updated', 'success');
} catch (error) {
showResult(`β Error getting cache stats: ${error.message}`, 'error');
}
};
window.clearCache = async function() {
try {
showResult('ποΈ Clearing cache...', 'loading');
const apiClient = currentTransformer.searchUtility.apiClient;
await apiClient.cache.clear();
document.getElementById('cacheStats').style.display = 'none';
showResult('β
Cache cleared successfully', 'success');
} catch (error) {
showResult(`β Error clearing cache: ${error.message}`, 'error');
}
};
function showResult(message, type = 'info') {
const resultsDiv = document.getElementById('testResults');
resultsDiv.style.display = 'block';
resultsDiv.className = `results ${type}`;
resultsDiv.textContent = message;
}
// Initialize with auto-detect
console.log('ποΈ Unified Cache Demo initialized');
console.log('Current environment:', typeof window !== 'undefined' ? 'Browser' : 'Node.js');
console.log('IndexedDB available:', typeof indexedDB !== 'undefined');
</script>
</body>
</html>