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 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038
use super::{
value_initializer::{InitResult, ValueInitializer},
CacheBuilder, ConcurrentCacheExt, Iter, OwnedKeyEntrySelector, PredicateId,
RefKeyEntrySelector,
};
use crate::{
common::{
concurrent::{
constants::{MAX_SYNC_REPEATS, WRITE_RETRY_INTERVAL_MICROS},
housekeeper::{self, InnerSync},
Weigher, WriteOp,
},
time::Instant,
},
notification::{self, EvictionListener},
sync_base::base_cache::{BaseCache, HouseKeeperArc},
Entry, Policy, PredicateError,
};
#[cfg(feature = "unstable-debug-counters")]
use crate::common::concurrent::debug_counters::CacheDebugStats;
use crossbeam_channel::{Sender, TrySendError};
use std::{
borrow::Borrow,
collections::hash_map::RandomState,
fmt,
future::Future,
hash::{BuildHasher, Hash},
pin::Pin,
sync::Arc,
time::Duration,
};
/// A thread-safe, futures-aware concurrent in-memory cache.
///
/// `Cache` supports full concurrency of retrievals and a high expected concurrency
/// for updates. It can be accessed inside and outside of asynchronous contexts.
///
/// `Cache` utilizes a lock-free concurrent hash table as the central key-value
/// storage. `Cache` performs a best-effort bounding of the map using an entry
/// replacement algorithm to determine which entries to evict when the capacity is
/// exceeded.
///
/// To use this cache, enable a crate feature called "future".
///
/// # Table of Contents
///
/// - [Example: `insert`, `get` and `invalidate`](#example-insert-get-and-invalidate)
/// - [Avoiding to clone the value at `get`](#avoiding-to-clone-the-value-at-get)
/// - [Example: Size-based Eviction](#example-size-based-eviction)
/// - [Example: Time-based Expirations](#example-time-based-expirations)
/// - [Example: Eviction Listener](#example-eviction-listener)
/// - [You should avoid eviction listener to panic](#you-should-avoid-eviction-listener-to-panic)
/// - [Delivery Modes for Eviction Listener](#delivery-modes-for-eviction-listener)
/// - [Thread Safety](#thread-safety)
/// - [Sharing a cache across threads](#sharing-a-cache-across-threads)
/// - [Hashing Algorithm](#hashing-algorithm)
///
/// # Example: `insert`, `get` and `invalidate`
///
/// Cache entries are manually added using an insert method, and are stored in the
/// cache until either evicted or manually invalidated:
///
/// - Inside an async context (`async fn` or `async` block), use
/// [`insert`](#method.insert), [`get_with`](#method.get_with) or
/// [`invalidate`](#method.invalidate) methods for updating the cache and `await`
/// them.
/// - Outside any async context, use [`blocking`](#method.blocking) method to access
/// blocking version of [`insert`](./struct.BlockingOp.html#method.insert) or
/// [`invalidate`](struct.BlockingOp.html#method.invalidate) methods.
///
/// Here's an example of reading and updating a cache by using multiple asynchronous
/// tasks with [Tokio][tokio-crate] runtime:
///
/// [tokio-crate]: https://crates.io/crates/tokio
///
///```rust
/// // Cargo.toml
/// //
/// // [dependencies]
/// // moka = { version = "0.10", features = ["future"] }
/// // tokio = { version = "1", features = ["rt-multi-thread", "macros" ] }
/// // futures-util = "0.3"
///
/// use moka::future::Cache;
///
/// #[tokio::main]
/// async fn main() {
/// const NUM_TASKS: usize = 16;
/// const NUM_KEYS_PER_TASK: usize = 64;
///
/// fn value(n: usize) -> String {
/// format!("value {}", n)
/// }
///
/// // Create a cache that can store up to 10,000 entries.
/// let cache = Cache::new(10_000);
///
/// // Spawn async tasks and write to and read from the cache.
/// let tasks: Vec<_> = (0..NUM_TASKS)
/// .map(|i| {
/// // To share the same cache across the async tasks, clone it.
/// // This is a cheap operation.
/// let my_cache = cache.clone();
/// let start = i * NUM_KEYS_PER_TASK;
/// let end = (i + 1) * NUM_KEYS_PER_TASK;
///
/// tokio::spawn(async move {
/// // Insert 64 entries. (NUM_KEYS_PER_TASK = 64)
/// for key in start..end {
/// // insert() is an async method, so await it.
/// my_cache.insert(key, value(key)).await;
/// // get() returns Option<String>, a clone of the stored value.
/// assert_eq!(my_cache.get(&key), Some(value(key)));
/// }
///
/// // Invalidate every 4 element of the inserted entries.
/// for key in (start..end).step_by(4) {
/// // invalidate() is an async method, so await it.
/// my_cache.invalidate(&key).await;
/// }
/// })
/// })
/// .collect();
///
/// // Wait for all tasks to complete.
/// futures_util::future::join_all(tasks).await;
///
/// // Verify the result.
/// for key in 0..(NUM_TASKS * NUM_KEYS_PER_TASK) {
/// if key % 4 == 0 {
/// assert_eq!(cache.get(&key), None);
/// } else {
/// assert_eq!(cache.get(&key), Some(value(key)));
/// }
/// }
/// }
/// ```
///
/// If you want to atomically initialize and insert a value when the key is not
/// present, you might want to check other insertion methods
/// [`get_with`](#method.get_with) and [`try_get_with`](#method.try_get_with).
///
/// # Avoiding to clone the value at `get`
///
/// The return type of `get` method is `Option<V>` instead of `Option<&V>`. Every
/// time `get` is called for an existing key, it creates a clone of the stored value
/// `V` and returns it. This is because the `Cache` allows concurrent updates from
/// threads so a value stored in the cache can be dropped or replaced at any time by
/// any other thread. `get` cannot return a reference `&V` as it is impossible to
/// guarantee the value outlives the reference.
///
/// If you want to store values that will be expensive to clone, wrap them by
/// `std::sync::Arc` before storing in a cache. [`Arc`][rustdoc-std-arc] is a
/// thread-safe reference-counted pointer and its `clone()` method is cheap.
///
/// [rustdoc-std-arc]: https://doc.rust-lang.org/stable/std/sync/struct.Arc.html
///
/// # Example: Size-based Eviction
///
/// ```rust
/// // Cargo.toml
/// //
/// // [dependencies]
/// // moka = { version = "0.10", features = ["future"] }
/// // tokio = { version = "1", features = ["rt-multi-thread", "macros" ] }
/// // futures-util = "0.3"
///
/// use std::convert::TryInto;
/// use moka::future::Cache;
///
/// #[tokio::main]
/// async fn main() {
/// // Evict based on the number of entries in the cache.
/// let cache = Cache::builder()
/// // Up to 10,000 entries.
/// .max_capacity(10_000)
/// // Create the cache.
/// .build();
/// cache.insert(1, "one".to_string()).await;
///
/// // Evict based on the byte length of strings in the cache.
/// let cache = Cache::builder()
/// // A weigher closure takes &K and &V and returns a u32
/// // representing the relative size of the entry.
/// .weigher(|_key, value: &String| -> u32 {
/// value.len().try_into().unwrap_or(u32::MAX)
/// })
/// // This cache will hold up to 32MiB of values.
/// .max_capacity(32 * 1024 * 1024)
/// .build();
/// cache.insert(2, "two".to_string()).await;
/// }
/// ```
///
/// If your cache should not grow beyond a certain size, use the `max_capacity`
/// method of the [`CacheBuilder`][builder-struct] to set the upper bound. The cache
/// will try to evict entries that have not been used recently or very often.
///
/// At the cache creation time, a weigher closure can be set by the `weigher` method
/// of the `CacheBuilder`. A weigher closure takes `&K` and `&V` as the arguments and
/// returns a `u32` representing the relative size of the entry:
///
/// - If the `weigher` is _not_ set, the cache will treat each entry has the same
/// size of `1`. This means the cache will be bounded by the number of entries.
/// - If the `weigher` is set, the cache will call the weigher to calculate the
/// weighted size (relative size) on an entry. This means the cache will be bounded
/// by the total weighted size of entries.
///
/// Note that weighted sizes are not used when making eviction selections.
///
/// [builder-struct]: ./struct.CacheBuilder.html
///
/// # Example: Time-based Expirations
///
/// `Cache` supports the following expiration policies:
///
/// - **Time to live**: A cached entry will be expired after the specified duration
/// past from `insert`.
/// - **Time to idle**: A cached entry will be expired after the specified duration
/// past from `get` or `insert`.
///
/// ```rust
/// // Cargo.toml
/// //
/// // [dependencies]
/// // moka = { version = "0.10", features = ["future"] }
/// // tokio = { version = "1", features = ["rt-multi-thread", "macros" ] }
/// // futures-util = "0.3"
///
/// use moka::future::Cache;
/// use std::time::Duration;
///
/// #[tokio::main]
/// async fn main() {
/// let cache = Cache::builder()
/// // Time to live (TTL): 30 minutes
/// .time_to_live(Duration::from_secs(30 * 60))
/// // Time to idle (TTI): 5 minutes
/// .time_to_idle(Duration::from_secs( 5 * 60))
/// // Create the cache.
/// .build();
///
/// // This entry will expire after 5 minutes (TTI) if there is no get().
/// cache.insert(0, "zero").await;
///
/// // This get() will extend the entry life for another 5 minutes.
/// cache.get(&0);
///
/// // Even though we keep calling get(), the entry will expire
/// // after 30 minutes (TTL) from the insert().
/// }
/// ```
///
/// # Example: Eviction Listener
///
/// A `Cache` can be configured with an eviction listener, a closure that is called
/// every time there is a cache eviction. The listener takes three parameters: the
/// key and value of the evicted entry, and the
/// [`RemovalCause`](../notification/enum.RemovalCause.html) to indicate why the
/// entry was evicted.
///
/// An eviction listener can be used to keep other data structures in sync with the
/// cache, for example.
///
/// The following example demonstrates how to use an eviction listener with
/// time-to-live expiration to manage the lifecycle of temporary files on a
/// filesystem. The cache stores the paths of the files, and when one of them has
/// expired, the eviction lister will be called with the path, so it can remove the
/// file from the filesystem.
///
/// ```rust
/// // Cargo.toml
/// //
/// // [dependencies]
/// // anyhow = "1.0"
/// // uuid = { version = "1.1", features = ["v4"] }
/// // tokio = { version = "1.18", features = ["fs", "macros", "rt-multi-thread", "sync", "time"] }
///
/// use moka::future::Cache;
///
/// use anyhow::{anyhow, Context};
/// use std::{
/// io,
/// path::{Path, PathBuf},
/// sync::Arc,
/// time::Duration,
/// };
/// use tokio::{fs, sync::RwLock};
/// use uuid::Uuid;
///
/// /// The DataFileManager writes, reads and removes data files.
/// struct DataFileManager {
/// base_dir: PathBuf,
/// file_count: usize,
/// }
///
/// impl DataFileManager {
/// fn new(base_dir: PathBuf) -> Self {
/// Self {
/// base_dir,
/// file_count: 0,
/// }
/// }
///
/// async fn write_data_file(&mut self, contents: String) -> io::Result<PathBuf> {
/// loop {
/// // Generate a unique file path.
/// let mut path = self.base_dir.to_path_buf();
/// path.push(Uuid::new_v4().as_hyphenated().to_string());
///
/// if path.exists() {
/// continue; // This path is already taken by others. Retry.
/// }
///
/// // We have got a unique file path, so create the file at
/// // the path and write the contents to the file.
/// fs::write(&path, contents).await?;
/// self.file_count += 1;
/// println!(
/// "Created a data file at {:?} (file count: {})",
/// path, self.file_count
/// );
///
/// // Return the path.
/// return Ok(path);
/// }
/// }
///
/// async fn read_data_file(&self, path: impl AsRef<Path>) -> io::Result<String> {
/// // Reads the contents of the file at the path, and return the contents.
/// fs::read_to_string(path).await
/// }
///
/// async fn remove_data_file(&mut self, path: impl AsRef<Path>) -> io::Result<()> {
/// // Remove the file at the path.
/// fs::remove_file(path.as_ref()).await?;
/// self.file_count -= 1;
/// println!(
/// "Removed a data file at {:?} (file count: {})",
/// path.as_ref(),
/// self.file_count
/// );
///
/// Ok(())
/// }
/// }
///
/// #[tokio::main]
/// async fn main() -> anyhow::Result<()> {
/// // Create an instance of the DataFileManager and wrap it with
/// // Arc<RwLock<_>> so it can be shared across threads.
/// let file_mgr = DataFileManager::new(std::env::temp_dir());
/// let file_mgr = Arc::new(RwLock::new(file_mgr));
///
/// let file_mgr1 = Arc::clone(&file_mgr);
/// let rt = tokio::runtime::Handle::current();
///
/// // Create an eviction lister closure.
/// let listener = move |k, v: PathBuf, cause| {
/// // Try to remove the data file at the path `v`.
/// println!(
/// "\n== An entry has been evicted. k: {:?}, v: {:?}, cause: {:?}",
/// k, v, cause
/// );
/// rt.block_on(async {
/// // Acquire the write lock of the DataFileManager.
/// let mut mgr = file_mgr1.write().await;
/// // Remove the data file. We must handle error cases here to
/// // prevent the listener from panicking.
/// if let Err(_e) = mgr.remove_data_file(v.as_path()).await {
/// eprintln!("Failed to remove a data file at {:?}", v);
/// }
/// });
/// };
///
/// // Create the cache. Set time to live for two seconds and set the
/// // eviction listener.
/// let cache = Cache::builder()
/// .max_capacity(100)
/// .time_to_live(Duration::from_secs(2))
/// .eviction_listener_with_queued_delivery_mode(listener)
/// .build();
///
/// // Insert an entry to the cache.
/// // This will create and write a data file for the key "user1", store the
/// // path of the file to the cache, and return it.
/// println!("== try_get_with()");
/// let path = cache
/// .try_get_with("user1", async {
/// let mut mgr = file_mgr.write().await;
/// let path = mgr
/// .write_data_file("user data".into())
/// .await
/// .with_context(|| format!("Failed to create a data file"))?;
/// Ok(path) as anyhow::Result<_>
/// })
/// .await
/// .map_err(|e| anyhow!("{}", e))?;
///
/// // Read the data file at the path and print the contents.
/// println!("\n== read_data_file()");
/// {
/// let mgr = file_mgr.read().await;
/// let contents = mgr
/// .read_data_file(path.as_path())
/// .await
/// .with_context(|| format!("Failed to read data from {:?}", path))?;
/// println!("contents: {}", contents);
/// }
///
/// // Sleep for five seconds. While sleeping, the cache entry for key "user1"
/// // will be expired and evicted, so the eviction lister will be called to
/// // remove the file.
/// tokio::time::sleep(Duration::from_secs(5)).await;
///
/// Ok(())
/// }
/// ```
///
/// ## You should avoid eviction listener to panic
///
/// It is very important to make an eviction listener closure not to panic.
/// Otherwise, the cache will stop calling the listener after a panic. This is an
/// intended behavior because the cache cannot know whether it is memory safe or not
/// to call the panicked lister again.
///
/// When a listener panics, the cache will swallow the panic and disable the
/// listener. If you want to know when a listener panics and the reason of the panic,
/// you can enable an optional `logging` feature of Moka and check error-level logs.
///
/// To enable the `logging`, do the followings:
///
/// 1. In `Cargo.toml`, add the crate feature `logging` for `moka`.
/// 2. Set the logging level for `moka` to `error` or any lower levels (`warn`,
/// `info`, ...):
/// - If you are using the `env_logger` crate, you can achieve this by setting
/// `RUST_LOG` environment variable to `moka=error`.
/// 3. If you have more than one caches, you may want to set a distinct name for each
/// cache by using cache builder's [`name`][builder-name-method] method. The name
/// will appear in the log.
///
/// [builder-name-method]: ./struct.CacheBuilder.html#method.name
///
/// ## Delivery Modes for Eviction Listener
///
/// The [`DeliveryMode`][delivery-mode] specifies how and when an eviction
/// notification should be delivered to an eviction listener. Currently, the
/// `future::Cache` supports only one delivery mode: `Queued` mode.
///
/// A future version of `future::Cache` will support `Immediate` mode, which will be
/// easier to use in many use cases than queued mode. Unlike the `future::Cache`,
/// the `sync::Cache` already supports it.
///
/// Once `future::Cache` supports the immediate mode, the `eviction_listener` and
/// `eviction_listener_with_conf` methods will be added to the
/// `future::CacheBuilder`. The former will use the immediate mode, and the latter
/// will take a custom configurations to specify the queued mode. The current method
/// `eviction_listener_with_queued_delivery_mode` will be deprecated.
///
/// For more details about the delivery modes, see [this section][sync-delivery-modes]
/// of `sync::Cache` documentation.
///
/// [delivery-mode]: ../notification/enum.DeliveryMode.html
/// [sync-delivery-modes]: ../sync/struct.Cache.html#delivery-modes-for-eviction-listener
///
/// # Thread Safety
///
/// All methods provided by the `Cache` are considered thread-safe, and can be safely
/// accessed by multiple concurrent threads.
///
/// - `Cache<K, V, S>` requires trait bounds `Send`, `Sync` and `'static` for `K`
/// (key), `V` (value) and `S` (hasher state).
/// - `Cache<K, V, S>` will implement `Send` and `Sync`.
///
/// # Sharing a cache across asynchronous tasks
///
/// To share a cache across async tasks (or OS threads), do one of the followings:
///
/// - Create a clone of the cache by calling its `clone` method and pass it to other
/// task.
/// - Wrap the cache by a `sync::OnceCell` or `sync::Lazy` from
/// [once_cell][once-cell-crate] create, and set it to a `static` variable.
///
/// Cloning is a cheap operation for `Cache` as it only creates thread-safe
/// reference-counted pointers to the internal data structures.
///
/// [once-cell-crate]: https://crates.io/crates/once_cell
///
/// # Hashing Algorithm
///
/// By default, `Cache` uses a hashing algorithm selected to provide resistance
/// against HashDoS attacks. It will be the same one used by
/// `std::collections::HashMap`, which is currently SipHash 1-3.
///
/// While SipHash's performance is very competitive for medium sized keys, other
/// hashing algorithms will outperform it for small keys such as integers as well as
/// large keys such as long strings. However those algorithms will typically not
/// protect against attacks such as HashDoS.
///
/// The hashing algorithm can be replaced on a per-`Cache` basis using the
/// [`build_with_hasher`][build-with-hasher-method] method of the `CacheBuilder`.
/// Many alternative algorithms are available on crates.io, such as the
/// [AHash][ahash-crate] crate.
///
/// [build-with-hasher-method]: ./struct.CacheBuilder.html#method.build_with_hasher
/// [ahash-crate]: https://crates.io/crates/ahash
///
pub struct Cache<K, V, S = RandomState> {
base: BaseCache<K, V, S>,
value_initializer: Arc<ValueInitializer<K, V, S>>,
}
// TODO: https://github.com/moka-rs/moka/issues/54
#[allow(clippy::non_send_fields_in_send_ty)]
unsafe impl<K, V, S> Send for Cache<K, V, S>
where
K: Send + Sync,
V: Send + Sync,
S: Send,
{
}
unsafe impl<K, V, S> Sync for Cache<K, V, S>
where
K: Send + Sync,
V: Send + Sync,
S: Sync,
{
}
// NOTE: We cannot do `#[derive(Clone)]` because it will add `Clone` bound to `K`.
impl<K, V, S> Clone for Cache<K, V, S> {
/// Makes a clone of this shared cache.
///
/// This operation is cheap as it only creates thread-safe reference counted
/// pointers to the shared internal data structures.
fn clone(&self) -> Self {
Self {
base: self.base.clone(),
value_initializer: Arc::clone(&self.value_initializer),
}
}
}
impl<K, V, S> fmt::Debug for Cache<K, V, S>
where
K: fmt::Debug + Eq + Hash + Send + Sync + 'static,
V: fmt::Debug + Clone + Send + Sync + 'static,
// TODO: Remove these bounds from S.
S: BuildHasher + Clone + Send + Sync + 'static,
{
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let mut d_map = f.debug_map();
for (k, v) in self.iter() {
d_map.entry(&k, &v);
}
d_map.finish()
}
}
impl<K, V, S> Cache<K, V, S> {
/// Returns cache’s name.
pub fn name(&self) -> Option<&str> {
self.base.name()
}
/// Returns a read-only cache policy of this cache.
///
/// At this time, cache policy cannot be modified after cache creation.
/// A future version may support to modify it.
pub fn policy(&self) -> Policy {
self.base.policy()
}
/// Returns an approximate number of entries in this cache.
///
/// The value returned is _an estimate_; the actual count may differ if there are
/// concurrent insertions or removals, or if some entries are pending removal due
/// to expiration. This inaccuracy can be mitigated by performing a `sync()`
/// first.
///
/// # Example
///
/// ```rust
/// // Cargo.toml
/// //
/// // [dependencies]
/// // moka = { version = "0.10", features = ["future"] }
/// // tokio = { version = "1", features = ["rt-multi-thread", "macros" ] }
/// use moka::future::Cache;
///
/// #[tokio::main]
/// async fn main() {
/// let cache = Cache::new(10);
/// cache.insert('n', "Netherland Dwarf").await;
/// cache.insert('l', "Lop Eared").await;
/// cache.insert('d', "Dutch").await;
///
/// // Ensure an entry exists.
/// assert!(cache.contains_key(&'n'));
///
/// // However, followings may print stale number zeros instead of threes.
/// println!("{}", cache.entry_count()); // -> 0
/// println!("{}", cache.weighted_size()); // -> 0
///
/// // To mitigate the inaccuracy, bring `ConcurrentCacheExt` trait to
/// // the scope so we can use `sync` method.
/// use moka::future::ConcurrentCacheExt;
/// // Call `sync` to run pending internal tasks.
/// cache.sync();
///
/// // Followings will print the actual numbers.
/// println!("{}", cache.entry_count()); // -> 3
/// println!("{}", cache.weighted_size()); // -> 3
/// }
/// ```
///
pub fn entry_count(&self) -> u64 {
self.base.entry_count()
}
/// Returns an approximate total weighted size of entries in this cache.
///
/// The value returned is _an estimate_; the actual size may differ if there are
/// concurrent insertions or removals, or if some entries are pending removal due
/// to expiration. This inaccuracy can be mitigated by performing a `sync()`
/// first. See [`entry_count`](#method.entry_count) for a sample code.
pub fn weighted_size(&self) -> u64 {
self.base.weighted_size()
}
#[cfg(feature = "unstable-debug-counters")]
#[cfg_attr(docsrs, doc(cfg(feature = "unstable-debug-counters")))]
pub fn debug_stats(&self) -> CacheDebugStats {
self.base.debug_stats()
}
}
impl<K, V> Cache<K, V, RandomState>
where
K: Hash + Eq + Send + Sync + 'static,
V: Clone + Send + Sync + 'static,
{
/// Constructs a new `Cache<K, V>` that will store up to the `max_capacity`.
///
/// To adjust various configuration knobs such as `initial_capacity` or
/// `time_to_live`, use the [`CacheBuilder`][builder-struct].
///
/// [builder-struct]: ./struct.CacheBuilder.html
pub fn new(max_capacity: u64) -> Self {
let build_hasher = RandomState::default();
Self::with_everything(
None,
Some(max_capacity),
None,
build_hasher,
None,
None,
None,
None,
None,
false,
housekeeper::Configuration::new_thread_pool(true),
)
}
/// Returns a [`CacheBuilder`][builder-struct], which can builds a `Cache` with
/// various configuration knobs.
///
/// [builder-struct]: ./struct.CacheBuilder.html
pub fn builder() -> CacheBuilder<K, V, Cache<K, V, RandomState>> {
CacheBuilder::default()
}
}
impl<K, V, S> Cache<K, V, S>
where
K: Hash + Eq + Send + Sync + 'static,
V: Clone + Send + Sync + 'static,
S: BuildHasher + Clone + Send + Sync + 'static,
{
// https://rust-lang.github.io/rust-clippy/master/index.html#too_many_arguments
#[allow(clippy::too_many_arguments)]
pub(crate) fn with_everything(
name: Option<String>,
max_capacity: Option<u64>,
initial_capacity: Option<usize>,
build_hasher: S,
weigher: Option<Weigher<K, V>>,
eviction_listener: Option<EvictionListener<K, V>>,
eviction_listener_conf: Option<notification::Configuration>,
time_to_live: Option<Duration>,
time_to_idle: Option<Duration>,
invalidator_enabled: bool,
housekeeper_conf: housekeeper::Configuration,
) -> Self {
Self {
base: BaseCache::new(
name,
max_capacity,
initial_capacity,
build_hasher.clone(),
weigher,
eviction_listener,
eviction_listener_conf,
time_to_live,
time_to_idle,
invalidator_enabled,
housekeeper_conf,
),
value_initializer: Arc::new(ValueInitializer::with_hasher(build_hasher)),
}
}
/// Returns `true` if the cache contains a value for the key.
///
/// Unlike the `get` method, this method is not considered a cache read operation,
/// so it does not update the historic popularity estimator or reset the idle
/// timer for the key.
///
/// The key may be any borrowed form of the cache's key type, but `Hash` and `Eq`
/// on the borrowed form _must_ match those for the key type.
pub fn contains_key<Q>(&self, key: &Q) -> bool
where
K: Borrow<Q>,
Q: Hash + Eq + ?Sized,
{
self.base.contains_key_with_hash(key, self.base.hash(key))
}
/// Returns a _clone_ of the value corresponding to the key.
///
/// If you want to store values that will be expensive to clone, wrap them by
/// `std::sync::Arc` before storing in a cache. [`Arc`][rustdoc-std-arc] is a
/// thread-safe reference-counted pointer and its `clone()` method is cheap.
///
/// The key may be any borrowed form of the cache's key type, but `Hash` and `Eq`
/// on the borrowed form _must_ match those for the key type.
///
/// [rustdoc-std-arc]: https://doc.rust-lang.org/stable/std/sync/struct.Arc.html
pub fn get<Q>(&self, key: &Q) -> Option<V>
where
K: Borrow<Q>,
Q: Hash + Eq + ?Sized,
{
self.base
.get_with_hash(key, self.base.hash(key), false)
.map(Entry::into_value)
}
/// Takes a key `K` and returns an [`OwnedKeyEntrySelector`] that can be used to
/// select or insert an entry.
///
/// [`OwnedKeyEntrySelector`]: ./struct.OwnedKeyEntrySelector.html
///
/// # Example
///
/// ```rust
/// // Cargo.toml
/// //
/// // [dependencies]
/// // moka = { version = "0.10", features = ["future"] }
/// // tokio = { version = "1", features = ["rt-multi-thread", "macros" ] }
///
/// use moka::future::Cache;
///
/// #[tokio::main]
/// async fn main() {
/// let cache: Cache<String, u32> = Cache::new(100);
/// let key = "key1".to_string();
///
/// let entry = cache.entry(key.clone()).or_insert(3).await;
/// assert!(entry.is_fresh());
/// assert_eq!(entry.key(), &key);
/// assert_eq!(entry.into_value(), 3);
///
/// let entry = cache.entry(key).or_insert(6).await;
/// // Not fresh because the value was already in the cache.
/// assert!(!entry.is_fresh());
/// assert_eq!(entry.into_value(), 3);
/// }
/// ```
pub fn entry(&self, key: K) -> OwnedKeyEntrySelector<'_, K, V, S>
where
K: Hash + Eq,
{
let hash = self.base.hash(&key);
OwnedKeyEntrySelector::new(key, hash, self)
}
/// Takes a reference `&Q` of a key and returns an [`RefKeyEntrySelector`] that
/// can be used to select or insert an entry.
///
/// [`RefKeyEntrySelector`]: ./struct.RefKeyEntrySelector.html
///
/// # Example
///
/// ```rust
/// // Cargo.toml
/// //
/// // [dependencies]
/// // moka = { version = "0.10", features = ["future"] }
/// // tokio = { version = "1", features = ["rt-multi-thread", "macros" ] }
///
/// use moka::future::Cache;
///
/// #[tokio::main]
/// async fn main() {
/// let cache: Cache<String, u32> = Cache::new(100);
/// let key = "key1".to_string();
///
/// let entry = cache.entry_by_ref(&key).or_insert(3).await;
/// assert!(entry.is_fresh());
/// assert_eq!(entry.key(), &key);
/// assert_eq!(entry.into_value(), 3);
///
/// let entry = cache.entry_by_ref(&key).or_insert(6).await;
/// // Not fresh because the value was already in the cache.
/// assert!(!entry.is_fresh());
/// assert_eq!(entry.into_value(), 3);
/// }
/// ```
pub fn entry_by_ref<'a, Q>(&'a self, key: &'a Q) -> RefKeyEntrySelector<'a, K, Q, V, S>
where
K: Borrow<Q>,
Q: ToOwned<Owned = K> + Hash + Eq + ?Sized,
{
let hash = self.base.hash(key);
RefKeyEntrySelector::new(key, hash, self)
}
/// Returns a _clone_ of the value corresponding to the key. If the value does
/// not exist, resolve the `init` future and inserts the output.
///
/// # Concurrent calls on the same key
///
/// This method guarantees that concurrent calls on the same not-existing key are
/// coalesced into one evaluation of the `init` future. Only one of the calls
/// evaluates its future, and other calls wait for that future to resolve.
///
/// The following code snippet demonstrates this behavior:
///
/// ```rust
/// // Cargo.toml
/// //
/// // [dependencies]
/// // moka = { version = "0.10", features = ["future"] }
/// // futures-util = "0.3"
/// // tokio = { version = "1", features = ["rt-multi-thread", "macros" ] }
/// use moka::future::Cache;
/// use std::sync::Arc;
///
/// #[tokio::main]
/// async fn main() {
/// const TEN_MIB: usize = 10 * 1024 * 1024; // 10MiB
/// let cache = Cache::new(100);
///
/// // Spawn four async tasks.
/// let tasks: Vec<_> = (0..4_u8)
/// .map(|task_id| {
/// let my_cache = cache.clone();
/// tokio::spawn(async move {
/// println!("Task {} started.", task_id);
///
/// // Insert and get the value for key1. Although all four async tasks
/// // will call `get_with` at the same time, the `init` async
/// // block must be resolved only once.
/// let value = my_cache
/// .get_with("key1", async move {
/// println!("Task {} inserting a value.", task_id);
/// Arc::new(vec![0u8; TEN_MIB])
/// })
/// .await;
///
/// // Ensure the value exists now.
/// assert_eq!(value.len(), TEN_MIB);
/// assert!(my_cache.get(&"key1").is_some());
///
/// println!("Task {} got the value. (len: {})", task_id, value.len());
/// })
/// })
/// .collect();
///
/// // Run all tasks concurrently and wait for them to complete.
/// futures_util::future::join_all(tasks).await;
/// }
/// ```
///
/// **A Sample Result**
///
/// - The `init` future (async black) was resolved exactly once by task 3.
/// - Other tasks were blocked until task 3 inserted the value.
///
/// ```console
/// Task 0 started.
/// Task 3 started.
/// Task 1 started.
/// Task 2 started.
/// Task 3 inserting a value.
/// Task 3 got the value. (len: 10485760)
/// Task 0 got the value. (len: 10485760)
/// Task 1 got the value. (len: 10485760)
/// Task 2 got the value. (len: 10485760)
/// ```
///
/// # Panics
///
/// This method panics when the `init` future has panicked. When it happens, only
/// the caller whose `init` future panicked will get the panic (e.g. only task 3
/// in the above sample). If there are other calls in progress (e.g. task 0, 1
/// and 2 above), this method will restart and resolve one of the remaining
/// `init` futures.
///
pub async fn get_with(&self, key: K, init: impl Future<Output = V>) -> V {
futures_util::pin_mut!(init);
let hash = self.base.hash(&key);
let key = Arc::new(key);
let replace_if = None as Option<fn(&V) -> bool>;
self.get_or_insert_with_hash_and_fun(key, hash, init, replace_if, false)
.await
.into_value()
}
/// Similar to [`get_with`](#method.get_with), but instead of passing an owned
/// key, you can pass a reference to the key. If the key does not exist in the
/// cache, the key will be cloned to create new entry in the cache.
pub async fn get_with_by_ref<Q>(&self, key: &Q, init: impl Future<Output = V>) -> V
where
K: Borrow<Q>,
Q: ToOwned<Owned = K> + Hash + Eq + ?Sized,
{
futures_util::pin_mut!(init);
let hash = self.base.hash(key);
let replace_if = None as Option<fn(&V) -> bool>;
self.get_or_insert_with_hash_by_ref_and_fun(key, hash, init, replace_if, false)
.await
.into_value()
}
/// Deprecated, replaced with
/// [`entry()::or_insert_with_if()`](./struct.OwnedKeyEntrySelector.html#method.or_insert_with_if)
#[deprecated(since = "0.10.0", note = "Replaced with `entry().or_insert_with_if()`")]
pub async fn get_with_if(
&self,
key: K,
init: impl Future<Output = V>,
replace_if: impl FnMut(&V) -> bool,
) -> V {
futures_util::pin_mut!(init);
let hash = self.base.hash(&key);
let key = Arc::new(key);
self.get_or_insert_with_hash_and_fun(key, hash, init, Some(replace_if), false)
.await
.into_value()
}
/// Returns a _clone_ of the value corresponding to the key. If the value does
/// not exist, resolves the `init` future, and inserts the value if `Some(value)`
/// was returned. If `None` was returned from the future, this method does not
/// insert a value and returns `None`.
///
/// # Concurrent calls on the same key
///
/// This method guarantees that concurrent calls on the same not-existing key are
/// coalesced into one evaluation of the `init` future. Only one of the calls
/// evaluates its future, and other calls wait for that future to resolve.
///
/// The following code snippet demonstrates this behavior:
///
/// ```rust
/// // Cargo.toml
/// //
/// // [dependencies]
/// // moka = { version = "0.10", features = ["future"] }
/// // futures-util = "0.3"
/// // reqwest = "0.11"
/// // tokio = { version = "1", features = ["rt-multi-thread", "macros" ] }
/// use moka::future::Cache;
///
/// // This async function tries to get HTML from the given URI.
/// async fn get_html(task_id: u8, uri: &str) -> Option<String> {
/// println!("get_html() called by task {}.", task_id);
/// reqwest::get(uri).await.ok()?.text().await.ok()
/// }
///
/// #[tokio::main]
/// async fn main() {
/// let cache = Cache::new(100);
///
/// // Spawn four async tasks.
/// let tasks: Vec<_> = (0..4_u8)
/// .map(|task_id| {
/// let my_cache = cache.clone();
/// tokio::spawn(async move {
/// println!("Task {} started.", task_id);
///
/// // Try to insert and get the value for key1. Although
/// // all four async tasks will call `try_get_with`
/// // at the same time, get_html() must be called only once.
/// let value = my_cache
/// .optionally_get_with(
/// "key1",
/// get_html(task_id, "https://www.rust-lang.org"),
/// ).await;
///
/// // Ensure the value exists now.
/// assert!(value.is_some());
/// assert!(my_cache.get(&"key1").is_some());
///
/// println!(
/// "Task {} got the value. (len: {})",
/// task_id,
/// value.unwrap().len()
/// );
/// })
/// })
/// .collect();
///
/// // Run all tasks concurrently and wait for them to complete.
/// futures_util::future::join_all(tasks).await;
/// }
/// ```
///
/// **A Sample Result**
///
/// - `get_html()` was called exactly once by task 2.
/// - Other tasks were blocked until task 2 inserted the value.
///
/// ```console
/// Task 1 started.
/// Task 0 started.
/// Task 2 started.
/// Task 3 started.
/// get_html() called by task 2.
/// Task 2 got the value. (len: 19419)
/// Task 1 got the value. (len: 19419)
/// Task 0 got the value. (len: 19419)
/// Task 3 got the value. (len: 19419)
/// ```
///
/// # Panics
///
/// This method panics when the `init` future has panicked. When it happens, only
/// the caller whose `init` future panicked will get the panic (e.g. only task 2
/// in the above sample). If there are other calls in progress (e.g. task 0, 1
/// and 3 above), this method will restart and resolve one of the remaining
/// `init` futures.
///
pub async fn optionally_get_with<F>(&self, key: K, init: F) -> Option<V>
where
F: Future<Output = Option<V>>,
{
futures_util::pin_mut!(init);
let hash = self.base.hash(&key);
let key = Arc::new(key);
self.get_or_optionally_insert_with_hash_and_fun(key, hash, init, false)
.await
.map(Entry::into_value)
}
/// Similar to [`optionally_get_with`](#method.optionally_get_with), but instead
/// of passing an owned key, you can pass a reference to the key. If the key does
/// not exist in the cache, the key will be cloned to create new entry in the
/// cache.
pub async fn optionally_get_with_by_ref<F, Q>(&self, key: &Q, init: F) -> Option<V>
where
F: Future<Output = Option<V>>,
K: Borrow<Q>,
Q: ToOwned<Owned = K> + Hash + Eq + ?Sized,
{
futures_util::pin_mut!(init);
let hash = self.base.hash(key);
self.get_or_optionally_insert_with_hash_by_ref_and_fun(key, hash, init, false)
.await
.map(Entry::into_value)
}
/// Returns a _clone_ of the value corresponding to the key. If the value does
/// not exist, resolves the `init` future, and inserts the value if `Ok(value)`
/// was returned. If `Err(_)` was returned from the future, this method does not
/// insert a value and returns the `Err` wrapped by [`std::sync::Arc`][std-arc].
///
/// [std-arc]: https://doc.rust-lang.org/stable/std/sync/struct.Arc.html
///
/// # Concurrent calls on the same key
///
/// This method guarantees that concurrent calls on the same not-existing key are
/// coalesced into one evaluation of the `init` future (as long as these
/// futures return the same error type). Only one of the calls evaluates its
/// future, and other calls wait for that future to resolve.
///
/// The following code snippet demonstrates this behavior:
///
/// ```rust
/// // Cargo.toml
/// //
/// // [dependencies]
/// // moka = { version = "0.10", features = ["future"] }
/// // futures-util = "0.3"
/// // reqwest = "0.11"
/// // tokio = { version = "1", features = ["rt-multi-thread", "macros" ] }
/// use moka::future::Cache;
///
/// // This async function tries to get HTML from the given URI.
/// async fn get_html(task_id: u8, uri: &str) -> Result<String, reqwest::Error> {
/// println!("get_html() called by task {}.", task_id);
/// reqwest::get(uri).await?.text().await
/// }
///
/// #[tokio::main]
/// async fn main() {
/// let cache = Cache::new(100);
///
/// // Spawn four async tasks.
/// let tasks: Vec<_> = (0..4_u8)
/// .map(|task_id| {
/// let my_cache = cache.clone();
/// tokio::spawn(async move {
/// println!("Task {} started.", task_id);
///
/// // Try to insert and get the value for key1. Although
/// // all four async tasks will call `try_get_with`
/// // at the same time, get_html() must be called only once.
/// let value = my_cache
/// .try_get_with(
/// "key1",
/// get_html(task_id, "https://www.rust-lang.org"),
/// ).await;
///
/// // Ensure the value exists now.
/// assert!(value.is_ok());
/// assert!(my_cache.get(&"key1").is_some());
///
/// println!(
/// "Task {} got the value. (len: {})",
/// task_id,
/// value.unwrap().len()
/// );
/// })
/// })
/// .collect();
///
/// // Run all tasks concurrently and wait for them to complete.
/// futures_util::future::join_all(tasks).await;
/// }
/// ```
///
/// **A Sample Result**
///
/// - `get_html()` was called exactly once by task 2.
/// - Other tasks were blocked until task 2 inserted the value.
///
/// ```console
/// Task 1 started.
/// Task 0 started.
/// Task 2 started.
/// Task 3 started.
/// get_html() called by task 2.
/// Task 2 got the value. (len: 19419)
/// Task 1 got the value. (len: 19419)
/// Task 0 got the value. (len: 19419)
/// Task 3 got the value. (len: 19419)
/// ```
///
/// # Panics
///
/// This method panics when the `init` future has panicked. When it happens, only
/// the caller whose `init` future panicked will get the panic (e.g. only task 2
/// in the above sample). If there are other calls in progress (e.g. task 0, 1
/// and 3 above), this method will restart and resolve one of the remaining
/// `init` futures.
///
pub async fn try_get_with<F, E>(&self, key: K, init: F) -> Result<V, Arc<E>>
where
F: Future<Output = Result<V, E>>,
E: Send + Sync + 'static,
{
futures_util::pin_mut!(init);
let hash = self.base.hash(&key);
let key = Arc::new(key);
self.get_or_try_insert_with_hash_and_fun(key, hash, init, false)
.await
.map(Entry::into_value)
}
/// Similar to [`try_get_with`](#method.try_get_with), but instead of passing an
/// owned key, you can pass a reference to the key. If the key does not exist in
/// the cache, the key will be cloned to create new entry in the cache.
pub async fn try_get_with_by_ref<F, E, Q>(&self, key: &Q, init: F) -> Result<V, Arc<E>>
where
F: Future<Output = Result<V, E>>,
E: Send + Sync + 'static,
K: Borrow<Q>,
Q: ToOwned<Owned = K> + Hash + Eq + ?Sized,
{
futures_util::pin_mut!(init);
let hash = self.base.hash(key);
self.get_or_try_insert_with_hash_by_ref_and_fun(key, hash, init, false)
.await
.map(Entry::into_value)
}
/// Inserts a key-value pair into the cache.
///
/// If the cache has this key present, the value is updated.
pub async fn insert(&self, key: K, value: V) {
let hash = self.base.hash(&key);
let key = Arc::new(key);
self.insert_with_hash(key, hash, value).await
}
fn do_blocking_insert(&self, key: K, value: V) {
let hash = self.base.hash(&key);
let key = Arc::new(key);
let (op, now) = self.base.do_insert_with_hash(key, hash, value);
let hk = self.base.housekeeper.as_ref();
Self::blocking_schedule_write_op(
self.base.inner.as_ref(),
&self.base.write_op_ch,
op,
now,
hk,
)
.expect("Failed to insert");
}
/// Discards any cached value for the key.
///
/// The key may be any borrowed form of the cache's key type, but `Hash` and `Eq`
/// on the borrowed form _must_ match those for the key type.
pub async fn invalidate<Q>(&self, key: &Q)
where
K: Borrow<Q>,
Q: Hash + Eq + ?Sized,
{
let hash = self.base.hash(key);
if let Some(kv) = self.base.remove_entry(key, hash) {
if self.base.is_removal_notifier_enabled() {
self.base.notify_invalidate(&kv.key, &kv.entry)
}
let op = WriteOp::Remove(kv);
let now = self.base.current_time_from_expiration_clock();
let hk = self.base.housekeeper.as_ref();
Self::schedule_write_op(
self.base.inner.as_ref(),
&self.base.write_op_ch,
op,
now,
hk,
)
.await
.expect("Failed to remove");
crossbeam_epoch::pin().flush();
}
}
fn do_blocking_invalidate<Q>(&self, key: &Q)
where
K: Borrow<Q>,
Q: Hash + Eq + ?Sized,
{
let hash = self.base.hash(key);
if let Some(kv) = self.base.remove_entry(key, hash) {
let op = WriteOp::Remove(kv);
let now = self.base.current_time_from_expiration_clock();
let hk = self.base.housekeeper.as_ref();
Self::blocking_schedule_write_op(
self.base.inner.as_ref(),
&self.base.write_op_ch,
op,
now,
hk,
)
.expect("Failed to remove");
}
}
/// Discards all cached values.
///
/// This method returns immediately and a background thread will evict all the
/// cached values inserted before the time when this method was called. It is
/// guaranteed that the `get` method must not return these invalidated values
/// even if they have not been evicted.
///
/// Like the `invalidate` method, this method does not clear the historic
/// popularity estimator of keys so that it retains the client activities of
/// trying to retrieve an item.
pub fn invalidate_all(&self) {
self.base.invalidate_all();
}
/// Discards cached values that satisfy a predicate.
///
/// `invalidate_entries_if` takes a closure that returns `true` or `false`. This
/// method returns immediately and a background thread will apply the closure to
/// each cached value inserted before the time when `invalidate_entries_if` was
/// called. If the closure returns `true` on a value, that value will be evicted
/// from the cache.
///
/// Also the `get` method will apply the closure to a value to determine if it
/// should have been invalidated. Therefore, it is guaranteed that the `get`
/// method must not return invalidated values.
///
/// Note that you must call
/// [`CacheBuilder::support_invalidation_closures`][support-invalidation-closures]
/// at the cache creation time as the cache needs to maintain additional internal
/// data structures to support this method. Otherwise, calling this method will
/// fail with a
/// [`PredicateError::InvalidationClosuresDisabled`][invalidation-disabled-error].
///
/// Like the `invalidate` method, this method does not clear the historic
/// popularity estimator of keys so that it retains the client activities of
/// trying to retrieve an item.
///
/// [support-invalidation-closures]: ./struct.CacheBuilder.html#method.support_invalidation_closures
/// [invalidation-disabled-error]: ../enum.PredicateError.html#variant.InvalidationClosuresDisabled
pub fn invalidate_entries_if<F>(&self, predicate: F) -> Result<PredicateId, PredicateError>
where
F: Fn(&K, &V) -> bool + Send + Sync + 'static,
{
self.base.invalidate_entries_if(Arc::new(predicate))
}
/// Creates an iterator visiting all key-value pairs in arbitrary order. The
/// iterator element type is `(Arc<K>, V)`, where `V` is a clone of a stored
/// value.
///
/// Iterators do not block concurrent reads and writes on the cache. An entry can
/// be inserted to, invalidated or evicted from a cache while iterators are alive
/// on the same cache.
///
/// Unlike the `get` method, visiting entries via an iterator do not update the
/// historic popularity estimator or reset idle timers for keys.
///
/// # Guarantees
///
/// In order to allow concurrent access to the cache, iterator's `next` method
/// does _not_ guarantee the following:
///
/// - It does not guarantee to return a key-value pair (an entry) if its key has
/// been inserted to the cache _after_ the iterator was created.
/// - Such an entry may or may not be returned depending on key's hash and
/// timing.
///
/// and the `next` method guarantees the followings:
///
/// - It guarantees not to return the same entry more than once.
/// - It guarantees not to return an entry if it has been removed from the cache
/// after the iterator was created.
/// - Note: An entry can be removed by following reasons:
/// - Manually invalidated.
/// - Expired (e.g. time-to-live).
/// - Evicted as the cache capacity exceeded.
///
/// # Examples
///
/// ```rust
/// // Cargo.toml
/// //
/// // [dependencies]
/// // moka = { version = "0.10", features = ["future"] }
/// // tokio = { version = "1", features = ["rt-multi-thread", "macros" ] }
/// use moka::future::Cache;
///
/// #[tokio::main]
/// async fn main() {
/// let cache = Cache::new(100);
/// cache.insert("Julia", 14).await;
///
/// let mut iter = cache.iter();
/// let (k, v) = iter.next().unwrap(); // (Arc<K>, V)
/// assert_eq!(*k, "Julia");
/// assert_eq!(v, 14);
///
/// assert!(iter.next().is_none());
/// }
/// ```
///
pub fn iter(&self) -> Iter<'_, K, V> {
use crate::sync_base::iter::{Iter as InnerIter, ScanningGet};
let inner = InnerIter::with_single_cache_segment(&self.base, self.base.num_cht_segments());
Iter::new(inner)
}
/// Returns a `BlockingOp` for this cache. It provides blocking
/// [`insert`](./struct.BlockingOp.html#method.insert) and
/// [`invalidate`](struct.BlockingOp.html#method.invalidate) methods, which
/// can be called outside of asynchronous contexts.
pub fn blocking(&self) -> BlockingOp<'_, K, V, S> {
BlockingOp(self)
}
}
impl<'a, K, V, S> IntoIterator for &'a Cache<K, V, S>
where
K: Hash + Eq + Send + Sync + 'static,
V: Clone + Send + Sync + 'static,
S: BuildHasher + Clone + Send + Sync + 'static,
{
type Item = (Arc<K>, V);
type IntoIter = Iter<'a, K, V>;
fn into_iter(self) -> Self::IntoIter {
self.iter()
}
}
impl<K, V, S> ConcurrentCacheExt<K, V> for Cache<K, V, S>
where
K: Hash + Eq + Send + Sync + 'static,
V: Clone + Send + Sync + 'static,
S: BuildHasher + Clone + Send + Sync + 'static,
{
fn sync(&self) {
self.base.inner.sync(MAX_SYNC_REPEATS);
}
}
//
// private methods
//
impl<K, V, S> Cache<K, V, S>
where
K: Hash + Eq + Send + Sync + 'static,
V: Clone + Send + Sync + 'static,
S: BuildHasher + Clone + Send + Sync + 'static,
{
pub(crate) async fn get_or_insert_with_hash_and_fun(
&self,
key: Arc<K>,
hash: u64,
init: Pin<&mut impl Future<Output = V>>,
mut replace_if: Option<impl FnMut(&V) -> bool>,
need_key: bool,
) -> Entry<K, V> {
let maybe_entry =
self.base
.get_with_hash_but_ignore_if(&key, hash, replace_if.as_mut(), need_key);
if let Some(entry) = maybe_entry {
entry
} else {
self.insert_with_hash_and_fun(key, hash, init, replace_if, need_key)
.await
}
}
pub(crate) async fn get_or_insert_with_hash_by_ref_and_fun<Q>(
&self,
key: &Q,
hash: u64,
init: Pin<&mut impl Future<Output = V>>,
mut replace_if: Option<impl FnMut(&V) -> bool>,
need_key: bool,
) -> Entry<K, V>
where
K: Borrow<Q>,
Q: ToOwned<Owned = K> + Hash + Eq + ?Sized,
{
let maybe_entry =
self.base
.get_with_hash_but_ignore_if(key, hash, replace_if.as_mut(), need_key);
if let Some(entry) = maybe_entry {
entry
} else {
let key = Arc::new(key.to_owned());
self.insert_with_hash_and_fun(key, hash, init, replace_if, need_key)
.await
}
}
async fn insert_with_hash_and_fun(
&self,
key: Arc<K>,
hash: u64,
init: Pin<&mut impl Future<Output = V>>,
mut replace_if: Option<impl FnMut(&V) -> bool>,
need_key: bool,
) -> Entry<K, V> {
use futures_util::FutureExt;
let get = || {
self.base
.get_with_hash_but_no_recording(&key, hash, replace_if.as_mut())
};
let insert = |v| self.insert_with_hash(key.clone(), hash, v).boxed();
let k = if need_key {
Some(Arc::clone(&key))
} else {
None
};
let type_id = ValueInitializer::<K, V, S>::type_id_for_get_with();
let post_init = ValueInitializer::<K, V, S>::post_init_for_get_with;
match self
.value_initializer
.try_init_or_read(&key, type_id, get, init, insert, post_init)
.await
{
InitResult::Initialized(v) => {
crossbeam_epoch::pin().flush();
Entry::new(k, v, true)
}
InitResult::ReadExisting(v) => Entry::new(k, v, false),
InitResult::InitErr(_) => unreachable!(),
}
}
pub(crate) async fn get_or_insert_with_hash(
&self,
key: Arc<K>,
hash: u64,
init: impl FnOnce() -> V,
) -> Entry<K, V> {
match self.base.get_with_hash(&key, hash, true) {
Some(entry) => entry,
None => {
let value = init();
self.insert_with_hash(Arc::clone(&key), hash, value.clone())
.await;
Entry::new(Some(key), value, true)
}
}
}
pub(crate) async fn get_or_insert_with_hash_by_ref<Q>(
&self,
key: &Q,
hash: u64,
init: impl FnOnce() -> V,
) -> Entry<K, V>
where
K: Borrow<Q>,
Q: ToOwned<Owned = K> + Hash + Eq + ?Sized,
{
match self.base.get_with_hash(key, hash, true) {
Some(entry) => entry,
None => {
let key = Arc::new(key.to_owned());
let value = init();
self.insert_with_hash(Arc::clone(&key), hash, value.clone())
.await;
Entry::new(Some(key), value, true)
}
}
}
pub(crate) async fn get_or_optionally_insert_with_hash_and_fun<F>(
&self,
key: Arc<K>,
hash: u64,
init: Pin<&mut F>,
need_key: bool,
) -> Option<Entry<K, V>>
where
F: Future<Output = Option<V>>,
{
let entry = self.base.get_with_hash(&key, hash, need_key);
if entry.is_some() {
return entry;
}
self.optionally_insert_with_hash_and_fun(key, hash, init, need_key)
.await
}
pub(crate) async fn get_or_optionally_insert_with_hash_by_ref_and_fun<F, Q>(
&self,
key: &Q,
hash: u64,
init: Pin<&mut F>,
need_key: bool,
) -> Option<Entry<K, V>>
where
F: Future<Output = Option<V>>,
K: Borrow<Q>,
Q: ToOwned<Owned = K> + Hash + Eq + ?Sized,
{
let entry = self.base.get_with_hash(key, hash, need_key);
if entry.is_some() {
return entry;
}
let key = Arc::new(key.to_owned());
self.optionally_insert_with_hash_and_fun(key, hash, init, need_key)
.await
}
async fn optionally_insert_with_hash_and_fun<F>(
&self,
key: Arc<K>,
hash: u64,
init: Pin<&mut F>,
need_key: bool,
) -> Option<Entry<K, V>>
where
F: Future<Output = Option<V>>,
{
use futures_util::FutureExt;
let get = || {
let ignore_if = None as Option<&mut fn(&V) -> bool>;
self.base
.get_with_hash_but_no_recording(&key, hash, ignore_if)
};
let insert = |v| self.insert_with_hash(key.clone(), hash, v).boxed();
let k = if need_key {
Some(Arc::clone(&key))
} else {
None
};
let type_id = ValueInitializer::<K, V, S>::type_id_for_optionally_get_with();
let post_init = ValueInitializer::<K, V, S>::post_init_for_optionally_get_with;
match self
.value_initializer
.try_init_or_read(&key, type_id, get, init, insert, post_init)
.await
{
InitResult::Initialized(v) => {
crossbeam_epoch::pin().flush();
Some(Entry::new(k, v, true))
}
InitResult::ReadExisting(v) => Some(Entry::new(k, v, false)),
InitResult::InitErr(_) => None,
}
}
pub(super) async fn get_or_try_insert_with_hash_and_fun<F, E>(
&self,
key: Arc<K>,
hash: u64,
init: Pin<&mut F>,
need_key: bool,
) -> Result<Entry<K, V>, Arc<E>>
where
F: Future<Output = Result<V, E>>,
E: Send + Sync + 'static,
{
if let Some(entry) = self.base.get_with_hash(&key, hash, need_key) {
return Ok(entry);
}
self.try_insert_with_hash_and_fun(key, hash, init, need_key)
.await
}
pub(super) async fn get_or_try_insert_with_hash_by_ref_and_fun<F, E, Q>(
&self,
key: &Q,
hash: u64,
init: Pin<&mut F>,
need_key: bool,
) -> Result<Entry<K, V>, Arc<E>>
where
F: Future<Output = Result<V, E>>,
E: Send + Sync + 'static,
K: Borrow<Q>,
Q: ToOwned<Owned = K> + Hash + Eq + ?Sized,
{
if let Some(entry) = self.base.get_with_hash(key, hash, need_key) {
return Ok(entry);
}
let key = Arc::new(key.to_owned());
self.try_insert_with_hash_and_fun(key, hash, init, need_key)
.await
}
async fn try_insert_with_hash_and_fun<F, E>(
&self,
key: Arc<K>,
hash: u64,
init: Pin<&mut F>,
need_key: bool,
) -> Result<Entry<K, V>, Arc<E>>
where
F: Future<Output = Result<V, E>>,
E: Send + Sync + 'static,
{
use futures_util::FutureExt;
let get = || {
let ignore_if = None as Option<&mut fn(&V) -> bool>;
self.base
.get_with_hash_but_no_recording(&key, hash, ignore_if)
};
let insert = |v| self.insert_with_hash(key.clone(), hash, v).boxed();
let k = if need_key {
Some(Arc::clone(&key))
} else {
None
};
let type_id = ValueInitializer::<K, V, S>::type_id_for_try_get_with::<E>();
let post_init = ValueInitializer::<K, V, S>::post_init_for_try_get_with;
match self
.value_initializer
.try_init_or_read(&key, type_id, get, init, insert, post_init)
.await
{
InitResult::Initialized(v) => {
crossbeam_epoch::pin().flush();
Ok(Entry::new(k, v, true))
}
InitResult::ReadExisting(v) => Ok(Entry::new(k, v, false)),
InitResult::InitErr(e) => {
crossbeam_epoch::pin().flush();
Err(e)
}
}
}
async fn insert_with_hash(&self, key: Arc<K>, hash: u64, value: V) {
let (op, now) = self.base.do_insert_with_hash(key, hash, value);
let hk = self.base.housekeeper.as_ref();
Self::schedule_write_op(
self.base.inner.as_ref(),
&self.base.write_op_ch,
op,
now,
hk,
)
.await
.expect("Failed to insert");
}
#[inline]
async fn schedule_write_op(
inner: &impl InnerSync,
ch: &Sender<WriteOp<K, V>>,
op: WriteOp<K, V>,
now: Instant,
housekeeper: Option<&HouseKeeperArc<K, V, S>>,
) -> Result<(), TrySendError<WriteOp<K, V>>> {
let mut op = op;
// TODO: Try to replace the timer with an async event listener to see if it
// can provide better performance.
loop {
BaseCache::apply_reads_writes_if_needed(inner, ch, now, housekeeper);
match ch.try_send(op) {
Ok(()) => break,
Err(TrySendError::Full(op1)) => {
op = op1;
async_io::Timer::after(Duration::from_micros(WRITE_RETRY_INTERVAL_MICROS))
.await;
}
Err(e @ TrySendError::Disconnected(_)) => return Err(e),
}
}
Ok(())
}
#[inline]
fn blocking_schedule_write_op(
inner: &impl InnerSync,
ch: &Sender<WriteOp<K, V>>,
op: WriteOp<K, V>,
now: Instant,
housekeeper: Option<&HouseKeeperArc<K, V, S>>,
) -> Result<(), TrySendError<WriteOp<K, V>>> {
let mut op = op;
loop {
BaseCache::apply_reads_writes_if_needed(inner, ch, now, housekeeper);
match ch.try_send(op) {
Ok(()) => break,
Err(TrySendError::Full(op1)) => {
op = op1;
std::thread::sleep(Duration::from_micros(WRITE_RETRY_INTERVAL_MICROS));
}
Err(e @ TrySendError::Disconnected(_)) => return Err(e),
}
}
Ok(())
}
}
// For unit tests.
#[cfg(test)]
impl<K, V, S> Cache<K, V, S>
where
K: Hash + Eq + Send + Sync + 'static,
V: Clone + Send + Sync + 'static,
S: BuildHasher + Clone + Send + Sync + 'static,
{
fn is_table_empty(&self) -> bool {
self.entry_count() == 0
}
fn invalidation_predicate_count(&self) -> usize {
self.base.invalidation_predicate_count()
}
fn reconfigure_for_testing(&mut self) {
self.base.reconfigure_for_testing();
}
fn set_expiration_clock(&self, clock: Option<crate::common::time::Clock>) {
self.base.set_expiration_clock(clock);
}
}
pub struct BlockingOp<'a, K, V, S>(&'a Cache<K, V, S>);
impl<'a, K, V, S> BlockingOp<'a, K, V, S>
where
K: Hash + Eq + Send + Sync + 'static,
V: Clone + Send + Sync + 'static,
S: BuildHasher + Clone + Send + Sync + 'static,
{
/// Inserts a key-value pair into the cache. If the cache has this key present,
/// the value is updated.
///
/// This method is intended for use cases where you are inserting from
/// synchronous code.
pub fn insert(&self, key: K, value: V) {
self.0.do_blocking_insert(key, value)
}
/// Discards any cached value for the key.
///
/// This method is intended for use cases where you are invalidating from
/// synchronous code.
///
/// The key may be any borrowed form of the cache's key type, but `Hash` and `Eq`
/// on the borrowed form _must_ match those for the key type.
pub fn invalidate<Q>(&self, key: &Q)
where
K: Borrow<Q>,
Q: Hash + Eq + ?Sized,
{
self.0.do_blocking_invalidate(key)
}
}
// To see the debug prints, run test as `cargo test -- --nocapture`
#[cfg(test)]
mod tests {
use super::{Cache, ConcurrentCacheExt};
use crate::{common::time::Clock, notification::RemovalCause};
use async_io::Timer;
use parking_lot::Mutex;
use std::{convert::Infallible, sync::Arc, time::Duration};
#[tokio::test]
async fn basic_single_async_task() {
// The following `Vec`s will hold actual and expected notifications.
let actual = Arc::new(Mutex::new(Vec::new()));
let mut expected = Vec::new();
// Create an eviction listener.
let a1 = Arc::clone(&actual);
// We use non-async mutex in the eviction listener (because the listener
// is a regular closure).
let listener = move |k, v, cause| a1.lock().push((k, v, cause));
// Create a cache with the eviction listener.
let mut cache = Cache::builder()
.max_capacity(3)
.eviction_listener_with_queued_delivery_mode(listener)
.build();
cache.reconfigure_for_testing();
// Make the cache exterior immutable.
let cache = cache;
cache.insert("a", "alice").await;
cache.insert("b", "bob").await;
assert_eq!(cache.get(&"a"), Some("alice"));
assert!(cache.contains_key(&"a"));
assert!(cache.contains_key(&"b"));
assert_eq!(cache.get(&"b"), Some("bob"));
cache.sync();
// counts: a -> 1, b -> 1
cache.insert("c", "cindy").await;
assert_eq!(cache.get(&"c"), Some("cindy"));
assert!(cache.contains_key(&"c"));
// counts: a -> 1, b -> 1, c -> 1
cache.sync();
assert!(cache.contains_key(&"a"));
assert_eq!(cache.get(&"a"), Some("alice"));
assert_eq!(cache.get(&"b"), Some("bob"));
assert!(cache.contains_key(&"b"));
cache.sync();
// counts: a -> 2, b -> 2, c -> 1
// "d" should not be admitted because its frequency is too low.
cache.insert("d", "david").await; // count: d -> 0
expected.push((Arc::new("d"), "david", RemovalCause::Size));
cache.sync();
assert_eq!(cache.get(&"d"), None); // d -> 1
assert!(!cache.contains_key(&"d"));
cache.insert("d", "david").await;
expected.push((Arc::new("d"), "david", RemovalCause::Size));
cache.sync();
assert!(!cache.contains_key(&"d"));
assert_eq!(cache.get(&"d"), None); // d -> 2
// "d" should be admitted and "c" should be evicted
// because d's frequency is higher than c's.
cache.insert("d", "dennis").await;
expected.push((Arc::new("c"), "cindy", RemovalCause::Size));
cache.sync();
assert_eq!(cache.get(&"a"), Some("alice"));
assert_eq!(cache.get(&"b"), Some("bob"));
assert_eq!(cache.get(&"c"), None);
assert_eq!(cache.get(&"d"), Some("dennis"));
assert!(cache.contains_key(&"a"));
assert!(cache.contains_key(&"b"));
assert!(!cache.contains_key(&"c"));
assert!(cache.contains_key(&"d"));
cache.invalidate(&"b").await;
expected.push((Arc::new("b"), "bob", RemovalCause::Explicit));
cache.sync();
assert_eq!(cache.get(&"b"), None);
assert!(!cache.contains_key(&"b"));
verify_notification_vec(&cache, actual, &expected);
}
#[test]
fn basic_single_blocking_api() {
let mut cache = Cache::new(3);
cache.reconfigure_for_testing();
// Make the cache exterior immutable.
let cache = cache;
cache.blocking().insert("a", "alice");
cache.blocking().insert("b", "bob");
assert_eq!(cache.get(&"a"), Some("alice"));
assert_eq!(cache.get(&"b"), Some("bob"));
cache.sync();
// counts: a -> 1, b -> 1
cache.blocking().insert("c", "cindy");
assert_eq!(cache.get(&"c"), Some("cindy"));
// counts: a -> 1, b -> 1, c -> 1
cache.sync();
assert_eq!(cache.get(&"a"), Some("alice"));
assert_eq!(cache.get(&"b"), Some("bob"));
cache.sync();
// counts: a -> 2, b -> 2, c -> 1
// "d" should not be admitted because its frequency is too low.
cache.blocking().insert("d", "david"); // count: d -> 0
cache.sync();
assert_eq!(cache.get(&"d"), None); // d -> 1
cache.blocking().insert("d", "david");
cache.sync();
assert_eq!(cache.get(&"d"), None); // d -> 2
// "d" should be admitted and "c" should be evicted
// because d's frequency is higher than c's.
cache.blocking().insert("d", "dennis");
cache.sync();
assert_eq!(cache.get(&"a"), Some("alice"));
assert_eq!(cache.get(&"b"), Some("bob"));
assert_eq!(cache.get(&"c"), None);
assert_eq!(cache.get(&"d"), Some("dennis"));
cache.blocking().invalidate(&"b");
assert_eq!(cache.get(&"b"), None);
}
#[tokio::test]
async fn size_aware_eviction() {
let weigher = |_k: &&str, v: &(&str, u32)| v.1;
let alice = ("alice", 10);
let bob = ("bob", 15);
let bill = ("bill", 20);
let cindy = ("cindy", 5);
let david = ("david", 15);
let dennis = ("dennis", 15);
// The following `Vec`s will hold actual and expected notifications.
let actual = Arc::new(Mutex::new(Vec::new()));
let mut expected = Vec::new();
// Create an eviction listener.
let a1 = Arc::clone(&actual);
let listener = move |k, v, cause| a1.lock().push((k, v, cause));
// Create a cache with the eviction listener.
let mut cache = Cache::builder()
.max_capacity(31)
.weigher(weigher)
.eviction_listener_with_queued_delivery_mode(listener)
.build();
cache.reconfigure_for_testing();
// Make the cache exterior immutable.
let cache = cache;
cache.insert("a", alice).await;
cache.insert("b", bob).await;
assert_eq!(cache.get(&"a"), Some(alice));
assert!(cache.contains_key(&"a"));
assert!(cache.contains_key(&"b"));
assert_eq!(cache.get(&"b"), Some(bob));
cache.sync();
// order (LRU -> MRU) and counts: a -> 1, b -> 1
cache.insert("c", cindy).await;
assert_eq!(cache.get(&"c"), Some(cindy));
assert!(cache.contains_key(&"c"));
// order and counts: a -> 1, b -> 1, c -> 1
cache.sync();
assert!(cache.contains_key(&"a"));
assert_eq!(cache.get(&"a"), Some(alice));
assert_eq!(cache.get(&"b"), Some(bob));
assert!(cache.contains_key(&"b"));
cache.sync();
// order and counts: c -> 1, a -> 2, b -> 2
// To enter "d" (weight: 15), it needs to evict "c" (w: 5) and "a" (w: 10).
// "d" must have higher count than 3, which is the aggregated count
// of "a" and "c".
cache.insert("d", david).await; // count: d -> 0
expected.push((Arc::new("d"), david, RemovalCause::Size));
cache.sync();
assert_eq!(cache.get(&"d"), None); // d -> 1
assert!(!cache.contains_key(&"d"));
cache.insert("d", david).await;
expected.push((Arc::new("d"), david, RemovalCause::Size));
cache.sync();
assert!(!cache.contains_key(&"d"));
assert_eq!(cache.get(&"d"), None); // d -> 2
cache.insert("d", david).await;
expected.push((Arc::new("d"), david, RemovalCause::Size));
cache.sync();
assert_eq!(cache.get(&"d"), None); // d -> 3
assert!(!cache.contains_key(&"d"));
cache.insert("d", david).await;
expected.push((Arc::new("d"), david, RemovalCause::Size));
cache.sync();
assert!(!cache.contains_key(&"d"));
assert_eq!(cache.get(&"d"), None); // d -> 4
// Finally "d" should be admitted by evicting "c" and "a".
cache.insert("d", dennis).await;
expected.push((Arc::new("c"), cindy, RemovalCause::Size));
expected.push((Arc::new("a"), alice, RemovalCause::Size));
cache.sync();
assert_eq!(cache.get(&"a"), None);
assert_eq!(cache.get(&"b"), Some(bob));
assert_eq!(cache.get(&"c"), None);
assert_eq!(cache.get(&"d"), Some(dennis));
assert!(!cache.contains_key(&"a"));
assert!(cache.contains_key(&"b"));
assert!(!cache.contains_key(&"c"));
assert!(cache.contains_key(&"d"));
// Update "b" with "bill" (w: 15 -> 20). This should evict "d" (w: 15).
cache.insert("b", bill).await;
expected.push((Arc::new("b"), bob, RemovalCause::Replaced));
expected.push((Arc::new("d"), dennis, RemovalCause::Size));
cache.sync();
assert_eq!(cache.get(&"b"), Some(bill));
assert_eq!(cache.get(&"d"), None);
assert!(cache.contains_key(&"b"));
assert!(!cache.contains_key(&"d"));
// Re-add "a" (w: 10) and update "b" with "bob" (w: 20 -> 15).
cache.insert("a", alice).await;
cache.insert("b", bob).await;
expected.push((Arc::new("b"), bill, RemovalCause::Replaced));
cache.sync();
assert_eq!(cache.get(&"a"), Some(alice));
assert_eq!(cache.get(&"b"), Some(bob));
assert_eq!(cache.get(&"d"), None);
assert!(cache.contains_key(&"a"));
assert!(cache.contains_key(&"b"));
assert!(!cache.contains_key(&"d"));
// Verify the sizes.
assert_eq!(cache.entry_count(), 2);
assert_eq!(cache.weighted_size(), 25);
verify_notification_vec(&cache, actual, &expected);
}
#[tokio::test]
async fn basic_multi_async_tasks() {
let num_tasks = 4;
let cache = Cache::new(100);
let tasks = (0..num_tasks)
.map(|id| {
let cache = cache.clone();
if id == 0 {
tokio::spawn(async move {
cache.blocking().insert(10, format!("{}-100", id));
cache.get(&10);
cache.blocking().insert(20, format!("{}-200", id));
cache.blocking().invalidate(&10);
})
} else {
tokio::spawn(async move {
cache.insert(10, format!("{}-100", id)).await;
cache.get(&10);
cache.insert(20, format!("{}-200", id)).await;
cache.invalidate(&10).await;
})
}
})
.collect::<Vec<_>>();
let _ = futures_util::future::join_all(tasks).await;
assert!(cache.get(&10).is_none());
assert!(cache.get(&20).is_some());
assert!(!cache.contains_key(&10));
assert!(cache.contains_key(&20));
}
#[tokio::test]
async fn invalidate_all() {
// The following `Vec`s will hold actual and expected notifications.
let actual = Arc::new(Mutex::new(Vec::new()));
let mut expected = Vec::new();
// Create an eviction listener.
let a1 = Arc::clone(&actual);
let listener = move |k, v, cause| a1.lock().push((k, v, cause));
// Create a cache with the eviction listener.
let mut cache = Cache::builder()
.max_capacity(100)
.eviction_listener_with_queued_delivery_mode(listener)
.build();
cache.reconfigure_for_testing();
// Make the cache exterior immutable.
let cache = cache;
cache.insert("a", "alice").await;
cache.insert("b", "bob").await;
cache.insert("c", "cindy").await;
assert_eq!(cache.get(&"a"), Some("alice"));
assert_eq!(cache.get(&"b"), Some("bob"));
assert_eq!(cache.get(&"c"), Some("cindy"));
assert!(cache.contains_key(&"a"));
assert!(cache.contains_key(&"b"));
assert!(cache.contains_key(&"c"));
// `cache.sync()` is no longer needed here before invalidating. The last
// modified timestamp of the entries were updated when they were inserted.
// https://github.com/moka-rs/moka/issues/155
cache.invalidate_all();
expected.push((Arc::new("a"), "alice", RemovalCause::Explicit));
expected.push((Arc::new("b"), "bob", RemovalCause::Explicit));
expected.push((Arc::new("c"), "cindy", RemovalCause::Explicit));
cache.sync();
cache.insert("d", "david").await;
cache.sync();
assert!(cache.get(&"a").is_none());
assert!(cache.get(&"b").is_none());
assert!(cache.get(&"c").is_none());
assert_eq!(cache.get(&"d"), Some("david"));
assert!(!cache.contains_key(&"a"));
assert!(!cache.contains_key(&"b"));
assert!(!cache.contains_key(&"c"));
assert!(cache.contains_key(&"d"));
verify_notification_vec(&cache, actual, &expected);
}
// This test is for https://github.com/moka-rs/moka/issues/155
#[tokio::test]
async fn invalidate_all_without_sync() {
let cache = Cache::new(1024);
assert_eq!(cache.get(&0), None);
cache.insert(0, 1).await;
assert_eq!(cache.get(&0), Some(1));
cache.invalidate_all();
assert_eq!(cache.get(&0), None);
}
#[tokio::test]
async fn invalidate_entries_if() -> Result<(), Box<dyn std::error::Error>> {
use std::collections::HashSet;
// The following `Vec`s will hold actual and expected notifications.
let actual = Arc::new(Mutex::new(Vec::new()));
let mut expected = Vec::new();
// Create an eviction listener.
let a1 = Arc::clone(&actual);
let listener = move |k, v, cause| a1.lock().push((k, v, cause));
// Create a cache with the eviction listener.
let mut cache = Cache::builder()
.max_capacity(100)
.support_invalidation_closures()
.eviction_listener_with_queued_delivery_mode(listener)
.build();
cache.reconfigure_for_testing();
let (clock, mock) = Clock::mock();
cache.set_expiration_clock(Some(clock));
// Make the cache exterior immutable.
let cache = cache;
cache.insert(0, "alice").await;
cache.insert(1, "bob").await;
cache.insert(2, "alex").await;
cache.sync();
mock.increment(Duration::from_secs(5)); // 5 secs from the start.
cache.sync();
assert_eq!(cache.get(&0), Some("alice"));
assert_eq!(cache.get(&1), Some("bob"));
assert_eq!(cache.get(&2), Some("alex"));
assert!(cache.contains_key(&0));
assert!(cache.contains_key(&1));
assert!(cache.contains_key(&2));
let names = ["alice", "alex"].iter().cloned().collect::<HashSet<_>>();
cache.invalidate_entries_if(move |_k, &v| names.contains(v))?;
assert_eq!(cache.invalidation_predicate_count(), 1);
expected.push((Arc::new(0), "alice", RemovalCause::Explicit));
expected.push((Arc::new(2), "alex", RemovalCause::Explicit));
mock.increment(Duration::from_secs(5)); // 10 secs from the start.
cache.insert(3, "alice").await;
// Run the invalidation task and wait for it to finish. (TODO: Need a better way than sleeping)
cache.sync(); // To submit the invalidation task.
std::thread::sleep(Duration::from_millis(200));
cache.sync(); // To process the task result.
std::thread::sleep(Duration::from_millis(200));
assert!(cache.get(&0).is_none());
assert!(cache.get(&2).is_none());
assert_eq!(cache.get(&1), Some("bob"));
// This should survive as it was inserted after calling invalidate_entries_if.
assert_eq!(cache.get(&3), Some("alice"));
assert!(!cache.contains_key(&0));
assert!(cache.contains_key(&1));
assert!(!cache.contains_key(&2));
assert!(cache.contains_key(&3));
assert_eq!(cache.entry_count(), 2);
assert_eq!(cache.invalidation_predicate_count(), 0);
mock.increment(Duration::from_secs(5)); // 15 secs from the start.
cache.invalidate_entries_if(|_k, &v| v == "alice")?;
cache.invalidate_entries_if(|_k, &v| v == "bob")?;
assert_eq!(cache.invalidation_predicate_count(), 2);
// key 1 was inserted before key 3.
expected.push((Arc::new(1), "bob", RemovalCause::Explicit));
expected.push((Arc::new(3), "alice", RemovalCause::Explicit));
// Run the invalidation task and wait for it to finish. (TODO: Need a better way than sleeping)
cache.sync(); // To submit the invalidation task.
std::thread::sleep(Duration::from_millis(200));
cache.sync(); // To process the task result.
std::thread::sleep(Duration::from_millis(200));
assert!(cache.get(&1).is_none());
assert!(cache.get(&3).is_none());
assert!(!cache.contains_key(&1));
assert!(!cache.contains_key(&3));
assert_eq!(cache.entry_count(), 0);
assert_eq!(cache.invalidation_predicate_count(), 0);
verify_notification_vec(&cache, actual, &expected);
Ok(())
}
#[tokio::test]
async fn time_to_live() {
// The following `Vec`s will hold actual and expected notifications.
let actual = Arc::new(Mutex::new(Vec::new()));
let mut expected = Vec::new();
// Create an eviction listener.
let a1 = Arc::clone(&actual);
let listener = move |k, v, cause| a1.lock().push((k, v, cause));
// Create a cache with the eviction listener.
let mut cache = Cache::builder()
.max_capacity(100)
.time_to_live(Duration::from_secs(10))
.eviction_listener_with_queued_delivery_mode(listener)
.build();
cache.reconfigure_for_testing();
let (clock, mock) = Clock::mock();
cache.set_expiration_clock(Some(clock));
// Make the cache exterior immutable.
let cache = cache;
cache.insert("a", "alice").await;
cache.sync();
mock.increment(Duration::from_secs(5)); // 5 secs from the start.
cache.sync();
assert_eq!(cache.get(&"a"), Some("alice"));
assert!(cache.contains_key(&"a"));
mock.increment(Duration::from_secs(5)); // 10 secs.
expected.push((Arc::new("a"), "alice", RemovalCause::Expired));
assert_eq!(cache.get(&"a"), None);
assert!(!cache.contains_key(&"a"));
assert_eq!(cache.iter().count(), 0);
cache.sync();
assert!(cache.is_table_empty());
cache.insert("b", "bob").await;
cache.sync();
assert_eq!(cache.entry_count(), 1);
mock.increment(Duration::from_secs(5)); // 15 secs.
cache.sync();
assert_eq!(cache.get(&"b"), Some("bob"));
assert!(cache.contains_key(&"b"));
assert_eq!(cache.entry_count(), 1);
cache.insert("b", "bill").await;
expected.push((Arc::new("b"), "bob", RemovalCause::Replaced));
cache.sync();
mock.increment(Duration::from_secs(5)); // 20 secs
cache.sync();
assert_eq!(cache.get(&"b"), Some("bill"));
assert!(cache.contains_key(&"b"));
assert_eq!(cache.entry_count(), 1);
mock.increment(Duration::from_secs(5)); // 25 secs
expected.push((Arc::new("b"), "bill", RemovalCause::Expired));
assert_eq!(cache.get(&"a"), None);
assert_eq!(cache.get(&"b"), None);
assert!(!cache.contains_key(&"a"));
assert!(!cache.contains_key(&"b"));
assert_eq!(cache.iter().count(), 0);
cache.sync();
assert!(cache.is_table_empty());
verify_notification_vec(&cache, actual, &expected);
}
#[tokio::test]
async fn time_to_idle() {
// The following `Vec`s will hold actual and expected notifications.
let actual = Arc::new(Mutex::new(Vec::new()));
let mut expected = Vec::new();
// Create an eviction listener.
let a1 = Arc::clone(&actual);
let listener = move |k, v, cause| a1.lock().push((k, v, cause));
// Create a cache with the eviction listener.
let mut cache = Cache::builder()
.max_capacity(100)
.time_to_idle(Duration::from_secs(10))
.eviction_listener_with_queued_delivery_mode(listener)
.build();
cache.reconfigure_for_testing();
let (clock, mock) = Clock::mock();
cache.set_expiration_clock(Some(clock));
// Make the cache exterior immutable.
let cache = cache;
cache.insert("a", "alice").await;
cache.sync();
mock.increment(Duration::from_secs(5)); // 5 secs from the start.
cache.sync();
assert_eq!(cache.get(&"a"), Some("alice"));
mock.increment(Duration::from_secs(5)); // 10 secs.
cache.sync();
cache.insert("b", "bob").await;
cache.sync();
assert_eq!(cache.entry_count(), 2);
mock.increment(Duration::from_secs(2)); // 12 secs.
cache.sync();
// contains_key does not reset the idle timer for the key.
assert!(cache.contains_key(&"a"));
assert!(cache.contains_key(&"b"));
cache.sync();
assert_eq!(cache.entry_count(), 2);
mock.increment(Duration::from_secs(3)); // 15 secs.
expected.push((Arc::new("a"), "alice", RemovalCause::Expired));
assert_eq!(cache.get(&"a"), None);
assert_eq!(cache.get(&"b"), Some("bob"));
assert!(!cache.contains_key(&"a"));
assert!(cache.contains_key(&"b"));
assert_eq!(cache.iter().count(), 1);
cache.sync();
assert_eq!(cache.entry_count(), 1);
mock.increment(Duration::from_secs(10)); // 25 secs
expected.push((Arc::new("b"), "bob", RemovalCause::Expired));
assert_eq!(cache.get(&"a"), None);
assert_eq!(cache.get(&"b"), None);
assert!(!cache.contains_key(&"a"));
assert!(!cache.contains_key(&"b"));
assert_eq!(cache.iter().count(), 0);
cache.sync();
assert!(cache.is_table_empty());
verify_notification_vec(&cache, actual, &expected);
}
#[tokio::test]
async fn test_iter() {
const NUM_KEYS: usize = 50;
fn make_value(key: usize) -> String {
format!("val: {}", key)
}
let cache = Cache::builder()
.max_capacity(100)
.time_to_idle(Duration::from_secs(10))
.build();
for key in 0..NUM_KEYS {
cache.insert(key, make_value(key)).await;
}
let mut key_set = std::collections::HashSet::new();
for (key, value) in &cache {
assert_eq!(value, make_value(*key));
key_set.insert(*key);
}
// Ensure there are no missing or duplicate keys in the iteration.
assert_eq!(key_set.len(), NUM_KEYS);
}
/// Runs 16 async tasks at the same time and ensures no deadlock occurs.
///
/// - Eight of the task will update key-values in the cache.
/// - Eight others will iterate the cache.
///
#[tokio::test]
async fn test_iter_multi_async_tasks() {
use std::collections::HashSet;
const NUM_KEYS: usize = 1024;
const NUM_TASKS: usize = 16;
fn make_value(key: usize) -> String {
format!("val: {}", key)
}
let cache = Cache::builder()
.max_capacity(2048)
.time_to_idle(Duration::from_secs(10))
.build();
// Initialize the cache.
for key in 0..NUM_KEYS {
cache.insert(key, make_value(key)).await;
}
let rw_lock = Arc::new(tokio::sync::RwLock::<()>::default());
let write_lock = rw_lock.write().await;
let tasks = (0..NUM_TASKS)
.map(|n| {
let cache = cache.clone();
let rw_lock = Arc::clone(&rw_lock);
if n % 2 == 0 {
// This thread will update the cache.
tokio::spawn(async move {
let read_lock = rw_lock.read().await;
for key in 0..NUM_KEYS {
// TODO: Update keys in a random order?
cache.insert(key, make_value(key)).await;
}
std::mem::drop(read_lock);
})
} else {
// This thread will iterate the cache.
tokio::spawn(async move {
let read_lock = rw_lock.read().await;
let mut key_set = HashSet::new();
// let mut key_count = 0usize;
for (key, value) in &cache {
assert_eq!(value, make_value(*key));
key_set.insert(*key);
// key_count += 1;
}
// Ensure there are no missing or duplicate keys in the iteration.
assert_eq!(key_set.len(), NUM_KEYS);
std::mem::drop(read_lock);
})
}
})
.collect::<Vec<_>>();
// Let these threads to run by releasing the write lock.
std::mem::drop(write_lock);
let _ = futures_util::future::join_all(tasks).await;
// Ensure there are no missing or duplicate keys in the iteration.
let key_set = cache.iter().map(|(k, _v)| *k).collect::<HashSet<_>>();
assert_eq!(key_set.len(), NUM_KEYS);
}
#[tokio::test]
async fn get_with() {
let cache = Cache::new(100);
const KEY: u32 = 0;
// This test will run five async tasks:
//
// Task1 will be the first task to call `get_with` for a key, so its async
// block will be evaluated and then a &str value "task1" will be inserted to
// the cache.
let task1 = {
let cache1 = cache.clone();
async move {
// Call `get_with` immediately.
let v = cache1
.get_with(KEY, async {
// Wait for 300 ms and return a &str value.
Timer::after(Duration::from_millis(300)).await;
"task1"
})
.await;
assert_eq!(v, "task1");
}
};
// Task2 will be the second task to call `get_with` for the same key, so its
// async block will not be evaluated. Once task1's async block finishes, it
// will get the value inserted by task1's async block.
let task2 = {
let cache2 = cache.clone();
async move {
// Wait for 100 ms before calling `get_with`.
Timer::after(Duration::from_millis(100)).await;
let v = cache2.get_with(KEY, async { unreachable!() }).await;
assert_eq!(v, "task1");
}
};
// Task3 will be the third task to call `get_with` for the same key. By the
// time it calls, task1's async block should have finished already and the
// value should be already inserted to the cache. So its async block will not
// be evaluated and will get the value inserted by task1's async block
// immediately.
let task3 = {
let cache3 = cache.clone();
async move {
// Wait for 400 ms before calling `get_with`.
Timer::after(Duration::from_millis(400)).await;
let v = cache3.get_with(KEY, async { unreachable!() }).await;
assert_eq!(v, "task1");
}
};
// Task4 will call `get` for the same key. It will call when task1's async
// block is still running, so it will get none for the key.
let task4 = {
let cache4 = cache.clone();
async move {
// Wait for 200 ms before calling `get`.
Timer::after(Duration::from_millis(200)).await;
let maybe_v = cache4.get(&KEY);
assert!(maybe_v.is_none());
}
};
// Task5 will call `get` for the same key. It will call after task1's async
// block finished, so it will get the value insert by task1's async block.
let task5 = {
let cache5 = cache.clone();
async move {
// Wait for 400 ms before calling `get`.
Timer::after(Duration::from_millis(400)).await;
let maybe_v = cache5.get(&KEY);
assert_eq!(maybe_v, Some("task1"));
}
};
futures_util::join!(task1, task2, task3, task4, task5);
}
#[tokio::test]
async fn get_with_by_ref() {
let cache = Cache::new(100);
const KEY: &u32 = &0;
// This test will run five async tasks:
//
// Task1 will be the first task to call `get_with_by_ref` for a key, so its async
// block will be evaluated and then a &str value "task1" will be inserted to
// the cache.
let task1 = {
let cache1 = cache.clone();
async move {
// Call `get_with_by_ref` immediately.
let v = cache1
.get_with_by_ref(KEY, async {
// Wait for 300 ms and return a &str value.
Timer::after(Duration::from_millis(300)).await;
"task1"
})
.await;
assert_eq!(v, "task1");
}
};
// Task2 will be the second task to call `get_with_by_ref` for the same key, so its
// async block will not be evaluated. Once task1's async block finishes, it
// will get the value inserted by task1's async block.
let task2 = {
let cache2 = cache.clone();
async move {
// Wait for 100 ms before calling `get_with_by_ref`.
Timer::after(Duration::from_millis(100)).await;
let v = cache2.get_with_by_ref(KEY, async { unreachable!() }).await;
assert_eq!(v, "task1");
}
};
// Task3 will be the third task to call `get_with_by_ref` for the same key. By the
// time it calls, task1's async block should have finished already and the
// value should be already inserted to the cache. So its async block will not
// be evaluated and will get the value inserted by task1's async block
// immediately.
let task3 = {
let cache3 = cache.clone();
async move {
// Wait for 400 ms before calling `get_with_by_ref`.
Timer::after(Duration::from_millis(400)).await;
let v = cache3.get_with_by_ref(KEY, async { unreachable!() }).await;
assert_eq!(v, "task1");
}
};
// Task4 will call `get` for the same key. It will call when task1's async
// block is still running, so it will get none for the key.
let task4 = {
let cache4 = cache.clone();
async move {
// Wait for 200 ms before calling `get`.
Timer::after(Duration::from_millis(200)).await;
let maybe_v = cache4.get(KEY);
assert!(maybe_v.is_none());
}
};
// Task5 will call `get` for the same key. It will call after task1's async
// block finished, so it will get the value insert by task1's async block.
let task5 = {
let cache5 = cache.clone();
async move {
// Wait for 400 ms before calling `get`.
Timer::after(Duration::from_millis(400)).await;
let maybe_v = cache5.get(KEY);
assert_eq!(maybe_v, Some("task1"));
}
};
futures_util::join!(task1, task2, task3, task4, task5);
}
#[tokio::test]
async fn entry_or_insert_with_if() {
let cache = Cache::new(100);
const KEY: u32 = 0;
// This test will run seven async tasks:
//
// Task1 will be the first task to call `or_insert_with_if` for a key, so its
// async block will be evaluated and then a &str value "task1" will be
// inserted to the cache.
let task1 = {
let cache1 = cache.clone();
async move {
// Call `or_insert_with_if` immediately.
let entry = cache1
.entry(KEY)
.or_insert_with_if(
async {
// Wait for 300 ms and return a &str value.
Timer::after(Duration::from_millis(300)).await;
"task1"
},
|_v| unreachable!(),
)
.await;
// Entry should be fresh because our async block should have been
// evaluated.
assert!(entry.is_fresh());
assert_eq!(entry.into_value(), "task1");
}
};
// Task2 will be the second task to call `or_insert_with_if` for the same
// key, so its async block will not be evaluated. Once task1's async block
// finishes, it will get the value inserted by task1's async block.
let task2 = {
let cache2 = cache.clone();
async move {
// Wait for 100 ms before calling `or_insert_with_if`.
Timer::after(Duration::from_millis(100)).await;
let entry = cache2
.entry(KEY)
.or_insert_with_if(async { unreachable!() }, |_v| unreachable!())
.await;
// Entry should not be fresh because task1's async block should have
// been evaluated instead of ours.
assert!(!entry.is_fresh());
assert_eq!(entry.into_value(), "task1");
}
};
// Task3 will be the third task to call `or_insert_with_if` for the same key.
// By the time it calls, task1's async block should have finished already and
// the value should be already inserted to the cache. Also task3's
// `replace_if` closure returns `false`. So its async block will not be
// evaluated and will get the value inserted by task1's async block
// immediately.
let task3 = {
let cache3 = cache.clone();
async move {
// Wait for 350 ms before calling `or_insert_with_if`.
Timer::after(Duration::from_millis(350)).await;
let entry = cache3
.entry(KEY)
.or_insert_with_if(async { unreachable!() }, |v| {
assert_eq!(v, &"task1");
false
})
.await;
assert!(!entry.is_fresh());
assert_eq!(entry.into_value(), "task1");
}
};
// Task4 will be the fourth task to call `or_insert_with_if` for the same
// key. The value should have been already inserted to the cache by task1.
// However task4's `replace_if` closure returns `true`. So its async block
// will be evaluated to replace the current value.
let task4 = {
let cache4 = cache.clone();
async move {
// Wait for 400 ms before calling `or_insert_with_if`.
Timer::after(Duration::from_millis(400)).await;
let entry = cache4
.entry(KEY)
.or_insert_with_if(async { "task4" }, |v| {
assert_eq!(v, &"task1");
true
})
.await;
assert!(entry.is_fresh());
assert_eq!(entry.into_value(), "task4");
}
};
// Task5 will call `get` for the same key. It will call when task1's async
// block is still running, so it will get none for the key.
let task5 = {
let cache5 = cache.clone();
async move {
// Wait for 200 ms before calling `get`.
Timer::after(Duration::from_millis(200)).await;
let maybe_v = cache5.get(&KEY);
assert!(maybe_v.is_none());
}
};
// Task6 will call `get` for the same key. It will call after task1's async
// block finished, so it will get the value insert by task1's async block.
let task6 = {
let cache6 = cache.clone();
async move {
// Wait for 350 ms before calling `get`.
Timer::after(Duration::from_millis(350)).await;
let maybe_v = cache6.get(&KEY);
assert_eq!(maybe_v, Some("task1"));
}
};
// Task7 will call `get` for the same key. It will call after task4's async
// block finished, so it will get the value insert by task4's async block.
let task7 = {
let cache7 = cache.clone();
async move {
// Wait for 450 ms before calling `get`.
Timer::after(Duration::from_millis(450)).await;
let maybe_v = cache7.get(&KEY);
assert_eq!(maybe_v, Some("task4"));
}
};
futures_util::join!(task1, task2, task3, task4, task5, task6, task7);
}
#[tokio::test]
async fn entry_by_ref_or_insert_with_if() {
let cache = Cache::new(100);
const KEY: &u32 = &0;
// This test will run seven async tasks:
//
// Task1 will be the first task to call `or_insert_with_if` for a key, so its
// async block will be evaluated and then a &str value "task1" will be
// inserted to the cache.
let task1 = {
let cache1 = cache.clone();
async move {
// Call `or_insert_with_if` immediately.
let entry = cache1
.entry_by_ref(KEY)
.or_insert_with_if(
async {
// Wait for 300 ms and return a &str value.
Timer::after(Duration::from_millis(300)).await;
"task1"
},
|_v| unreachable!(),
)
.await;
// Entry should be fresh because our async block should have been
// evaluated.
assert!(entry.is_fresh());
assert_eq!(entry.into_value(), "task1");
}
};
// Task2 will be the second task to call `or_insert_with_if` for the same
// key, so its async block will not be evaluated. Once task1's async block
// finishes, it will get the value inserted by task1's async block.
let task2 = {
let cache2 = cache.clone();
async move {
// Wait for 100 ms before calling `or_insert_with_if`.
Timer::after(Duration::from_millis(100)).await;
let entry = cache2
.entry_by_ref(KEY)
.or_insert_with_if(async { unreachable!() }, |_v| unreachable!())
.await;
// Entry should not be fresh because task1's async block should have
// been evaluated instead of ours.
assert!(!entry.is_fresh());
assert_eq!(entry.into_value(), "task1");
}
};
// Task3 will be the third task to call `or_insert_with_if` for the same key.
// By the time it calls, task1's async block should have finished already and
// the value should be already inserted to the cache. Also task3's
// `replace_if` closure returns `false`. So its async block will not be
// evaluated and will get the value inserted by task1's async block
// immediately.
let task3 = {
let cache3 = cache.clone();
async move {
// Wait for 350 ms before calling `or_insert_with_if`.
Timer::after(Duration::from_millis(350)).await;
let entry = cache3
.entry_by_ref(KEY)
.or_insert_with_if(async { unreachable!() }, |v| {
assert_eq!(v, &"task1");
false
})
.await;
assert!(!entry.is_fresh());
assert_eq!(entry.into_value(), "task1");
}
};
// Task4 will be the fourth task to call `or_insert_with_if` for the same
// key. The value should have been already inserted to the cache by task1.
// However task4's `replace_if` closure returns `true`. So its async block
// will be evaluated to replace the current value.
let task4 = {
let cache4 = cache.clone();
async move {
// Wait for 400 ms before calling `or_insert_with_if`.
Timer::after(Duration::from_millis(400)).await;
let entry = cache4
.entry_by_ref(KEY)
.or_insert_with_if(async { "task4" }, |v| {
assert_eq!(v, &"task1");
true
})
.await;
assert!(entry.is_fresh());
assert_eq!(entry.into_value(), "task4");
}
};
// Task5 will call `get` for the same key. It will call when task1's async
// block is still running, so it will get none for the key.
let task5 = {
let cache5 = cache.clone();
async move {
// Wait for 200 ms before calling `get`.
Timer::after(Duration::from_millis(200)).await;
let maybe_v = cache5.get(KEY);
assert!(maybe_v.is_none());
}
};
// Task6 will call `get` for the same key. It will call after task1's async
// block finished, so it will get the value insert by task1's async block.
let task6 = {
let cache6 = cache.clone();
async move {
// Wait for 350 ms before calling `get`.
Timer::after(Duration::from_millis(350)).await;
let maybe_v = cache6.get(KEY);
assert_eq!(maybe_v, Some("task1"));
}
};
// Task7 will call `get` for the same key. It will call after task4's async
// block finished, so it will get the value insert by task4's async block.
let task7 = {
let cache7 = cache.clone();
async move {
// Wait for 450 ms before calling `get`.
Timer::after(Duration::from_millis(450)).await;
let maybe_v = cache7.get(KEY);
assert_eq!(maybe_v, Some("task4"));
}
};
futures_util::join!(task1, task2, task3, task4, task5, task6, task7);
}
#[tokio::test]
async fn try_get_with() {
use std::sync::Arc;
// Note that MyError does not implement std::error::Error trait
// like anyhow::Error.
#[derive(Debug)]
pub struct MyError(String);
type MyResult<T> = Result<T, Arc<MyError>>;
let cache = Cache::new(100);
const KEY: u32 = 0;
// This test will run eight async tasks:
//
// Task1 will be the first task to call `get_with` for a key, so its async
// block will be evaluated and then an error will be returned. Nothing will
// be inserted to the cache.
let task1 = {
let cache1 = cache.clone();
async move {
// Call `try_get_with` immediately.
let v = cache1
.try_get_with(KEY, async {
// Wait for 300 ms and return an error.
Timer::after(Duration::from_millis(300)).await;
Err(MyError("task1 error".into()))
})
.await;
assert!(v.is_err());
}
};
// Task2 will be the second task to call `get_with` for the same key, so its
// async block will not be evaluated. Once task1's async block finishes, it
// will get the same error value returned by task1's async block.
let task2 = {
let cache2 = cache.clone();
async move {
// Wait for 100 ms before calling `try_get_with`.
Timer::after(Duration::from_millis(100)).await;
let v: MyResult<_> = cache2.try_get_with(KEY, async { unreachable!() }).await;
assert!(v.is_err());
}
};
// Task3 will be the third task to call `get_with` for the same key. By the
// time it calls, task1's async block should have finished already, but the
// key still does not exist in the cache. So its async block will be
// evaluated and then an okay &str value will be returned. That value will be
// inserted to the cache.
let task3 = {
let cache3 = cache.clone();
async move {
// Wait for 400 ms before calling `try_get_with`.
Timer::after(Duration::from_millis(400)).await;
let v: MyResult<_> = cache3
.try_get_with(KEY, async {
// Wait for 300 ms and return an Ok(&str) value.
Timer::after(Duration::from_millis(300)).await;
Ok("task3")
})
.await;
assert_eq!(v.unwrap(), "task3");
}
};
// Task4 will be the fourth task to call `get_with` for the same key. So its
// async block will not be evaluated. Once task3's async block finishes, it
// will get the same okay &str value.
let task4 = {
let cache4 = cache.clone();
async move {
// Wait for 500 ms before calling `try_get_with`.
Timer::after(Duration::from_millis(500)).await;
let v: MyResult<_> = cache4.try_get_with(KEY, async { unreachable!() }).await;
assert_eq!(v.unwrap(), "task3");
}
};
// Task5 will be the fifth task to call `get_with` for the same key. So its
// async block will not be evaluated. By the time it calls, task3's async
// block should have finished already, so its async block will not be
// evaluated and will get the value insert by task3's async block
// immediately.
let task5 = {
let cache5 = cache.clone();
async move {
// Wait for 800 ms before calling `try_get_with`.
Timer::after(Duration::from_millis(800)).await;
let v: MyResult<_> = cache5.try_get_with(KEY, async { unreachable!() }).await;
assert_eq!(v.unwrap(), "task3");
}
};
// Task6 will call `get` for the same key. It will call when task1's async
// block is still running, so it will get none for the key.
let task6 = {
let cache6 = cache.clone();
async move {
// Wait for 200 ms before calling `get`.
Timer::after(Duration::from_millis(200)).await;
let maybe_v = cache6.get(&KEY);
assert!(maybe_v.is_none());
}
};
// Task7 will call `get` for the same key. It will call after task1's async
// block finished with an error. So it will get none for the key.
let task7 = {
let cache7 = cache.clone();
async move {
// Wait for 400 ms before calling `get`.
Timer::after(Duration::from_millis(400)).await;
let maybe_v = cache7.get(&KEY);
assert!(maybe_v.is_none());
}
};
// Task8 will call `get` for the same key. It will call after task3's async
// block finished, so it will get the value insert by task3's async block.
let task8 = {
let cache8 = cache.clone();
async move {
// Wait for 800 ms before calling `get`.
Timer::after(Duration::from_millis(800)).await;
let maybe_v = cache8.get(&KEY);
assert_eq!(maybe_v, Some("task3"));
}
};
futures_util::join!(task1, task2, task3, task4, task5, task6, task7, task8);
}
#[tokio::test]
async fn try_get_with_by_ref() {
use std::sync::Arc;
// Note that MyError does not implement std::error::Error trait
// like anyhow::Error.
#[derive(Debug)]
pub struct MyError(String);
type MyResult<T> = Result<T, Arc<MyError>>;
let cache = Cache::new(100);
const KEY: &u32 = &0;
// This test will run eight async tasks:
//
// Task1 will be the first task to call `try_get_with_by_ref` for a key, so
// its async block will be evaluated and then an error will be returned.
// Nothing will be inserted to the cache.
let task1 = {
let cache1 = cache.clone();
async move {
// Call `try_get_with_by_ref` immediately.
let v = cache1
.try_get_with_by_ref(KEY, async {
// Wait for 300 ms and return an error.
Timer::after(Duration::from_millis(300)).await;
Err(MyError("task1 error".into()))
})
.await;
assert!(v.is_err());
}
};
// Task2 will be the second task to call `get_with` for the same key, so its
// async block will not be evaluated. Once task1's async block finishes, it
// will get the same error value returned by task1's async block.
let task2 = {
let cache2 = cache.clone();
async move {
// Wait for 100 ms before calling `try_get_with_by_ref`.
Timer::after(Duration::from_millis(100)).await;
let v: MyResult<_> = cache2
.try_get_with_by_ref(KEY, async { unreachable!() })
.await;
assert!(v.is_err());
}
};
// Task3 will be the third task to call `get_with` for the same key. By the
// time it calls, task1's async block should have finished already, but the
// key still does not exist in the cache. So its async block will be
// evaluated and then an okay &str value will be returned. That value will be
// inserted to the cache.
let task3 = {
let cache3 = cache.clone();
async move {
// Wait for 400 ms before calling `try_get_with_by_ref`.
Timer::after(Duration::from_millis(400)).await;
let v: MyResult<_> = cache3
.try_get_with_by_ref(KEY, async {
// Wait for 300 ms and return an Ok(&str) value.
Timer::after(Duration::from_millis(300)).await;
Ok("task3")
})
.await;
assert_eq!(v.unwrap(), "task3");
}
};
// Task4 will be the fourth task to call `get_with` for the same key. So its
// async block will not be evaluated. Once task3's async block finishes, it
// will get the same okay &str value.
let task4 = {
let cache4 = cache.clone();
async move {
// Wait for 500 ms before calling `try_get_with_by_ref`.
Timer::after(Duration::from_millis(500)).await;
let v: MyResult<_> = cache4
.try_get_with_by_ref(KEY, async { unreachable!() })
.await;
assert_eq!(v.unwrap(), "task3");
}
};
// Task5 will be the fifth task to call `get_with` for the same key. So its
// async block will not be evaluated. By the time it calls, task3's async
// block should have finished already, so its async block will not be
// evaluated and will get the value insert by task3's async block
// immediately.
let task5 = {
let cache5 = cache.clone();
async move {
// Wait for 800 ms before calling `try_get_with_by_ref`.
Timer::after(Duration::from_millis(800)).await;
let v: MyResult<_> = cache5
.try_get_with_by_ref(KEY, async { unreachable!() })
.await;
assert_eq!(v.unwrap(), "task3");
}
};
// Task6 will call `get` for the same key. It will call when task1's async
// block is still running, so it will get none for the key.
let task6 = {
let cache6 = cache.clone();
async move {
// Wait for 200 ms before calling `get`.
Timer::after(Duration::from_millis(200)).await;
let maybe_v = cache6.get(KEY);
assert!(maybe_v.is_none());
}
};
// Task7 will call `get` for the same key. It will call after task1's async
// block finished with an error. So it will get none for the key.
let task7 = {
let cache7 = cache.clone();
async move {
// Wait for 400 ms before calling `get`.
Timer::after(Duration::from_millis(400)).await;
let maybe_v = cache7.get(KEY);
assert!(maybe_v.is_none());
}
};
// Task8 will call `get` for the same key. It will call after task3's async
// block finished, so it will get the value insert by task3's async block.
let task8 = {
let cache8 = cache.clone();
async move {
// Wait for 800 ms before calling `get`.
Timer::after(Duration::from_millis(800)).await;
let maybe_v = cache8.get(KEY);
assert_eq!(maybe_v, Some("task3"));
}
};
futures_util::join!(task1, task2, task3, task4, task5, task6, task7, task8);
}
#[tokio::test]
async fn optionally_get_with() {
let cache = Cache::new(100);
const KEY: u32 = 0;
// This test will run eight async tasks:
//
// Task1 will be the first task to call `optionally_get_with` for a key,
// so its async block will be evaluated and then an None will be
// returned. Nothing will be inserted to the cache.
let task1 = {
let cache1 = cache.clone();
async move {
// Call `try_get_with` immediately.
let v = cache1
.optionally_get_with(KEY, async {
// Wait for 300 ms and return an None.
Timer::after(Duration::from_millis(300)).await;
None
})
.await;
assert!(v.is_none());
}
};
// Task2 will be the second task to call `optionally_get_with` for the same
// key, so its async block will not be evaluated. Once task1's async block
// finishes, it will get the same error value returned by task1's async
// block.
let task2 = {
let cache2 = cache.clone();
async move {
// Wait for 100 ms before calling `optionally_get_with`.
Timer::after(Duration::from_millis(100)).await;
let v = cache2
.optionally_get_with(KEY, async { unreachable!() })
.await;
assert!(v.is_none());
}
};
// Task3 will be the third task to call `optionally_get_with` for the
// same key. By the time it calls, task1's async block should have
// finished already, but the key still does not exist in the cache. So
// its async block will be evaluated and then an okay &str value will be
// returned. That value will be inserted to the cache.
let task3 = {
let cache3 = cache.clone();
async move {
// Wait for 400 ms before calling `optionally_get_with`.
Timer::after(Duration::from_millis(400)).await;
let v = cache3
.optionally_get_with(KEY, async {
// Wait for 300 ms and return an Some(&str) value.
Timer::after(Duration::from_millis(300)).await;
Some("task3")
})
.await;
assert_eq!(v.unwrap(), "task3");
}
};
// Task4 will be the fourth task to call `optionally_get_with` for the
// same key. So its async block will not be evaluated. Once task3's
// async block finishes, it will get the same okay &str value.
let task4 = {
let cache4 = cache.clone();
async move {
// Wait for 500 ms before calling `try_get_with`.
Timer::after(Duration::from_millis(500)).await;
let v = cache4
.optionally_get_with(KEY, async { unreachable!() })
.await;
assert_eq!(v.unwrap(), "task3");
}
};
// Task5 will be the fifth task to call `optionally_get_with` for the
// same key. So its async block will not be evaluated. By the time it
// calls, task3's async block should have finished already, so its async
// block will not be evaluated and will get the value insert by task3's
// async block immediately.
let task5 = {
let cache5 = cache.clone();
async move {
// Wait for 800 ms before calling `optionally_get_with`.
Timer::after(Duration::from_millis(800)).await;
let v = cache5
.optionally_get_with(KEY, async { unreachable!() })
.await;
assert_eq!(v.unwrap(), "task3");
}
};
// Task6 will call `get` for the same key. It will call when task1's async
// block is still running, so it will get none for the key.
let task6 = {
let cache6 = cache.clone();
async move {
// Wait for 200 ms before calling `get`.
Timer::after(Duration::from_millis(200)).await;
let maybe_v = cache6.get(&KEY);
assert!(maybe_v.is_none());
}
};
// Task7 will call `get` for the same key. It will call after task1's async
// block finished with an error. So it will get none for the key.
let task7 = {
let cache7 = cache.clone();
async move {
// Wait for 400 ms before calling `get`.
Timer::after(Duration::from_millis(400)).await;
let maybe_v = cache7.get(&KEY);
assert!(maybe_v.is_none());
}
};
// Task8 will call `get` for the same key. It will call after task3's async
// block finished, so it will get the value insert by task3's async block.
let task8 = {
let cache8 = cache.clone();
async move {
// Wait for 800 ms before calling `get`.
Timer::after(Duration::from_millis(800)).await;
let maybe_v = cache8.get(&KEY);
assert_eq!(maybe_v, Some("task3"));
}
};
futures_util::join!(task1, task2, task3, task4, task5, task6, task7, task8);
}
#[tokio::test]
async fn optionally_get_with_by_ref() {
let cache = Cache::new(100);
const KEY: &u32 = &0;
// This test will run eight async tasks:
//
// Task1 will be the first task to call `optionally_get_with_by_ref` for a
// key, so its async block will be evaluated and then an None will be
// returned. Nothing will be inserted to the cache.
let task1 = {
let cache1 = cache.clone();
async move {
// Call `try_get_with` immediately.
let v = cache1
.optionally_get_with_by_ref(KEY, async {
// Wait for 300 ms and return an None.
Timer::after(Duration::from_millis(300)).await;
None
})
.await;
assert!(v.is_none());
}
};
// Task2 will be the second task to call `optionally_get_with_by_ref` for the
// same key, so its async block will not be evaluated. Once task1's async
// block finishes, it will get the same error value returned by task1's async
// block.
let task2 = {
let cache2 = cache.clone();
async move {
// Wait for 100 ms before calling `optionally_get_with_by_ref`.
Timer::after(Duration::from_millis(100)).await;
let v = cache2
.optionally_get_with_by_ref(KEY, async { unreachable!() })
.await;
assert!(v.is_none());
}
};
// Task3 will be the third task to call `optionally_get_with_by_ref` for the
// same key. By the time it calls, task1's async block should have
// finished already, but the key still does not exist in the cache. So
// its async block will be evaluated and then an okay &str value will be
// returned. That value will be inserted to the cache.
let task3 = {
let cache3 = cache.clone();
async move {
// Wait for 400 ms before calling `optionally_get_with_by_ref`.
Timer::after(Duration::from_millis(400)).await;
let v = cache3
.optionally_get_with_by_ref(KEY, async {
// Wait for 300 ms and return an Some(&str) value.
Timer::after(Duration::from_millis(300)).await;
Some("task3")
})
.await;
assert_eq!(v.unwrap(), "task3");
}
};
// Task4 will be the fourth task to call `optionally_get_with_by_ref` for the
// same key. So its async block will not be evaluated. Once task3's
// async block finishes, it will get the same okay &str value.
let task4 = {
let cache4 = cache.clone();
async move {
// Wait for 500 ms before calling `try_get_with`.
Timer::after(Duration::from_millis(500)).await;
let v = cache4
.optionally_get_with_by_ref(KEY, async { unreachable!() })
.await;
assert_eq!(v.unwrap(), "task3");
}
};
// Task5 will be the fifth task to call `optionally_get_with_by_ref` for the
// same key. So its async block will not be evaluated. By the time it
// calls, task3's async block should have finished already, so its async
// block will not be evaluated and will get the value insert by task3's
// async block immediately.
let task5 = {
let cache5 = cache.clone();
async move {
// Wait for 800 ms before calling `optionally_get_with_by_ref`.
Timer::after(Duration::from_millis(800)).await;
let v = cache5
.optionally_get_with_by_ref(KEY, async { unreachable!() })
.await;
assert_eq!(v.unwrap(), "task3");
}
};
// Task6 will call `get` for the same key. It will call when task1's async
// block is still running, so it will get none for the key.
let task6 = {
let cache6 = cache.clone();
async move {
// Wait for 200 ms before calling `get`.
Timer::after(Duration::from_millis(200)).await;
let maybe_v = cache6.get(KEY);
assert!(maybe_v.is_none());
}
};
// Task7 will call `get` for the same key. It will call after task1's async
// block finished with an error. So it will get none for the key.
let task7 = {
let cache7 = cache.clone();
async move {
// Wait for 400 ms before calling `get`.
Timer::after(Duration::from_millis(400)).await;
let maybe_v = cache7.get(KEY);
assert!(maybe_v.is_none());
}
};
// Task8 will call `get` for the same key. It will call after task3's async
// block finished, so it will get the value insert by task3's async block.
let task8 = {
let cache8 = cache.clone();
async move {
// Wait for 800 ms before calling `get`.
Timer::after(Duration::from_millis(800)).await;
let maybe_v = cache8.get(KEY);
assert_eq!(maybe_v, Some("task3"));
}
};
futures_util::join!(task1, task2, task3, task4, task5, task6, task7, task8);
}
#[tokio::test]
// https://github.com/moka-rs/moka/issues/43
async fn handle_panic_in_get_with() {
use tokio::time::{sleep, Duration};
let cache = Cache::new(16);
let semaphore = Arc::new(tokio::sync::Semaphore::new(0));
{
let cache_ref = cache.clone();
let semaphore_ref = semaphore.clone();
tokio::task::spawn(async move {
let _ = cache_ref
.get_with(1, async move {
semaphore_ref.add_permits(1);
sleep(Duration::from_millis(50)).await;
panic!("Panic during try_get_with");
})
.await;
});
}
let _ = semaphore.acquire().await.expect("semaphore acquire failed");
assert_eq!(cache.get_with(1, async { 5 }).await, 5);
}
#[tokio::test]
// https://github.com/moka-rs/moka/issues/43
async fn handle_panic_in_try_get_with() {
use tokio::time::{sleep, Duration};
let cache = Cache::new(16);
let semaphore = Arc::new(tokio::sync::Semaphore::new(0));
{
let cache_ref = cache.clone();
let semaphore_ref = semaphore.clone();
tokio::task::spawn(async move {
let _ = cache_ref
.try_get_with(1, async move {
semaphore_ref.add_permits(1);
sleep(Duration::from_millis(50)).await;
panic!("Panic during try_get_with");
})
.await as Result<_, Arc<Infallible>>;
});
}
let _ = semaphore.acquire().await.expect("semaphore acquire failed");
assert_eq!(
cache.try_get_with(1, async { Ok(5) }).await as Result<_, Arc<Infallible>>,
Ok(5)
);
}
#[tokio::test]
// https://github.com/moka-rs/moka/issues/59
async fn abort_get_with() {
use tokio::time::{sleep, Duration};
let cache = Cache::new(16);
let semaphore = Arc::new(tokio::sync::Semaphore::new(0));
let handle;
{
let cache_ref = cache.clone();
let semaphore_ref = semaphore.clone();
handle = tokio::task::spawn(async move {
let _ = cache_ref
.get_with(1, async move {
semaphore_ref.add_permits(1);
sleep(Duration::from_millis(50)).await;
unreachable!();
})
.await;
});
}
let _ = semaphore.acquire().await.expect("semaphore acquire failed");
handle.abort();
assert_eq!(cache.get_with(1, async { 5 }).await, 5);
}
#[tokio::test]
// https://github.com/moka-rs/moka/issues/59
async fn abort_try_get_with() {
use tokio::time::{sleep, Duration};
let cache = Cache::new(16);
let semaphore = Arc::new(tokio::sync::Semaphore::new(0));
let handle;
{
let cache_ref = cache.clone();
let semaphore_ref = semaphore.clone();
handle = tokio::task::spawn(async move {
let _ = cache_ref
.try_get_with(1, async move {
semaphore_ref.add_permits(1);
sleep(Duration::from_millis(50)).await;
unreachable!();
})
.await as Result<_, Arc<Infallible>>;
});
}
let _ = semaphore.acquire().await.expect("semaphore acquire failed");
handle.abort();
assert_eq!(
cache.try_get_with(1, async { Ok(5) }).await as Result<_, Arc<Infallible>>,
Ok(5)
);
}
#[tokio::test]
async fn test_removal_notifications() {
// The following `Vec`s will hold actual and expected notifications.
let actual = Arc::new(Mutex::new(Vec::new()));
let mut expected = Vec::new();
// Create an eviction listener.
let a1 = Arc::clone(&actual);
let listener = move |k, v, cause| a1.lock().push((k, v, cause));
// Create a cache with the eviction listener.
let mut cache = Cache::builder()
.max_capacity(3)
.eviction_listener_with_queued_delivery_mode(listener)
.build();
cache.reconfigure_for_testing();
// Make the cache exterior immutable.
let cache = cache;
cache.insert('a', "alice").await;
cache.invalidate(&'a').await;
expected.push((Arc::new('a'), "alice", RemovalCause::Explicit));
cache.sync();
assert_eq!(cache.entry_count(), 0);
cache.insert('b', "bob").await;
cache.insert('c', "cathy").await;
cache.insert('d', "david").await;
cache.sync();
assert_eq!(cache.entry_count(), 3);
// This will be rejected due to the size constraint.
cache.insert('e', "emily").await;
expected.push((Arc::new('e'), "emily", RemovalCause::Size));
cache.sync();
assert_eq!(cache.entry_count(), 3);
// Raise the popularity of 'e' so it will be accepted next time.
cache.get(&'e');
cache.sync();
// Retry.
cache.insert('e', "eliza").await;
// and the LRU entry will be evicted.
expected.push((Arc::new('b'), "bob", RemovalCause::Size));
cache.sync();
assert_eq!(cache.entry_count(), 3);
// Replace an existing entry.
cache.insert('d', "dennis").await;
expected.push((Arc::new('d'), "david", RemovalCause::Replaced));
cache.sync();
assert_eq!(cache.entry_count(), 3);
verify_notification_vec(&cache, actual, &expected);
}
#[tokio::test]
async fn test_removal_notifications_with_updates() {
// The following `Vec`s will hold actual and expected notifications.
let actual = Arc::new(Mutex::new(Vec::new()));
let mut expected = Vec::new();
// Create an eviction listener.
let a1 = Arc::clone(&actual);
let listener = move |k, v, cause| a1.lock().push((k, v, cause));
// Create a cache with the eviction listener and also TTL and TTI.
let mut cache = Cache::builder()
.eviction_listener_with_queued_delivery_mode(listener)
.time_to_live(Duration::from_secs(7))
.time_to_idle(Duration::from_secs(5))
.build();
cache.reconfigure_for_testing();
let (clock, mock) = Clock::mock();
cache.set_expiration_clock(Some(clock));
// Make the cache exterior immutable.
let cache = cache;
cache.insert("alice", "a0").await;
cache.sync();
// Now alice (a0) has been expired by the idle timeout (TTI).
mock.increment(Duration::from_secs(6));
expected.push((Arc::new("alice"), "a0", RemovalCause::Expired));
assert_eq!(cache.get(&"alice"), None);
// We have not ran sync after the expiration of alice (a0), so it is
// still in the cache.
assert_eq!(cache.entry_count(), 1);
// Re-insert alice with a different value. Since alice (a0) is still
// in the cache, this is actually a replace operation rather than an
// insert operation. We want to verify that the RemovalCause of a0 is
// Expired, not Replaced.
cache.insert("alice", "a1").await;
cache.sync();
mock.increment(Duration::from_secs(4));
assert_eq!(cache.get(&"alice"), Some("a1"));
cache.sync();
// Now alice has been expired by time-to-live (TTL).
mock.increment(Duration::from_secs(4));
expected.push((Arc::new("alice"), "a1", RemovalCause::Expired));
assert_eq!(cache.get(&"alice"), None);
// But, again, it is still in the cache.
assert_eq!(cache.entry_count(), 1);
// Re-insert alice with a different value and verify that the
// RemovalCause of a1 is Expired (not Replaced).
cache.insert("alice", "a2").await;
cache.sync();
assert_eq!(cache.entry_count(), 1);
// Now alice (a2) has been expired by the idle timeout.
mock.increment(Duration::from_secs(6));
expected.push((Arc::new("alice"), "a2", RemovalCause::Expired));
assert_eq!(cache.get(&"alice"), None);
assert_eq!(cache.entry_count(), 1);
// This invalidate will internally remove alice (a2).
cache.invalidate(&"alice").await;
cache.sync();
assert_eq!(cache.entry_count(), 0);
// Re-insert, and this time, make it expired by the TTL.
cache.insert("alice", "a3").await;
cache.sync();
mock.increment(Duration::from_secs(4));
assert_eq!(cache.get(&"alice"), Some("a3"));
cache.sync();
mock.increment(Duration::from_secs(4));
expected.push((Arc::new("alice"), "a3", RemovalCause::Expired));
assert_eq!(cache.get(&"alice"), None);
assert_eq!(cache.entry_count(), 1);
// This invalidate will internally remove alice (a2).
cache.invalidate(&"alice").await;
cache.sync();
assert_eq!(cache.entry_count(), 0);
verify_notification_vec(&cache, actual, &expected);
}
// NOTE: To enable the panic logging, run the following command:
//
// RUST_LOG=moka=info cargo test --features 'future, logging' -- \
// future::cache::tests::recover_from_panicking_eviction_listener --exact --nocapture
//
#[tokio::test]
async fn recover_from_panicking_eviction_listener() {
#[cfg(feature = "logging")]
let _ = env_logger::builder().is_test(true).try_init();
// The following `Vec`s will hold actual and expected notifications.
let actual = Arc::new(Mutex::new(Vec::new()));
let mut expected = Vec::new();
// Create an eviction listener that panics when it see
// a value "panic now!".
let a1 = Arc::clone(&actual);
let listener = move |k, v, cause| {
if v == "panic now!" {
panic!("Panic now!");
}
a1.lock().push((k, v, cause))
};
// Create a cache with the eviction listener.
let mut cache = Cache::builder()
.name("My Future Cache")
.eviction_listener_with_queued_delivery_mode(listener)
.build();
cache.reconfigure_for_testing();
// Make the cache exterior immutable.
let cache = cache;
// Insert an okay value.
cache.insert("alice", "a0").await;
cache.sync();
// Insert a value that will cause the eviction listener to panic.
cache.insert("alice", "panic now!").await;
expected.push((Arc::new("alice"), "a0", RemovalCause::Replaced));
cache.sync();
// Insert an okay value. This will replace the previous
// value "panic now!" so the eviction listener will panic.
cache.insert("alice", "a2").await;
cache.sync();
// No more removal notification should be sent.
// Invalidate the okay value.
cache.invalidate(&"alice").await;
cache.sync();
verify_notification_vec(&cache, actual, &expected);
}
// This test ensures that the `contains_key`, `get` and `invalidate` can use
// borrowed form `&[u8]` for key with type `Vec<u8>`.
// https://github.com/moka-rs/moka/issues/166
#[tokio::test]
async fn borrowed_forms_of_key() {
let cache: Cache<Vec<u8>, ()> = Cache::new(1);
let key = vec![1_u8];
cache.insert(key.clone(), ()).await;
// key as &Vec<u8>
let key_v: &Vec<u8> = &key;
assert!(cache.contains_key(key_v));
assert_eq!(cache.get(key_v), Some(()));
cache.invalidate(key_v).await;
cache.insert(key, ()).await;
// key as &[u8]
let key_s: &[u8] = &[1_u8];
assert!(cache.contains_key(key_s));
assert_eq!(cache.get(key_s), Some(()));
cache.invalidate(key_s).await;
}
#[tokio::test]
async fn drop_value_immediately_after_eviction() {
use crate::common::test_utils::{Counters, Value};
const MAX_CAPACITY: u32 = 500;
const KEYS: u32 = ((MAX_CAPACITY as f64) * 1.2) as u32;
let counters = Arc::new(Counters::default());
let counters1 = Arc::clone(&counters);
let listener = move |_k, _v, cause| match cause {
RemovalCause::Size => counters1.incl_evicted(),
RemovalCause::Explicit => counters1.incl_invalidated(),
_ => (),
};
let mut cache = Cache::builder()
.max_capacity(MAX_CAPACITY as u64)
.eviction_listener_with_queued_delivery_mode(listener)
.build();
cache.reconfigure_for_testing();
// Make the cache exterior immutable.
let cache = cache;
for key in 0..KEYS {
let value = Arc::new(Value::new(vec![0u8; 1024], &counters));
cache.insert(key, value).await;
counters.incl_inserted();
cache.sync();
}
let eviction_count = KEYS - MAX_CAPACITY;
// Retries will be needed when testing in a QEMU VM.
const MAX_RETRIES: usize = 5;
let mut retries = 0;
loop {
// Ensure all scheduled notifications have been processed.
std::thread::sleep(Duration::from_millis(500));
if counters.evicted() != eviction_count || counters.value_dropped() != eviction_count {
if retries <= MAX_RETRIES {
retries += 1;
cache.sync();
continue;
} else {
assert_eq!(counters.evicted(), eviction_count, "Retries exhausted");
assert_eq!(
counters.value_dropped(),
eviction_count,
"Retries exhausted"
);
}
}
assert_eq!(counters.inserted(), KEYS, "inserted");
assert_eq!(counters.value_created(), KEYS, "value_created");
assert_eq!(counters.evicted(), eviction_count, "evicted");
assert_eq!(counters.invalidated(), 0, "invalidated");
assert_eq!(counters.value_dropped(), eviction_count, "value_dropped");
break;
}
for key in 0..KEYS {
cache.invalidate(&key).await;
cache.sync();
}
let mut retries = 0;
loop {
// Ensure all scheduled notifications have been processed.
std::thread::sleep(Duration::from_millis(500));
if counters.invalidated() != MAX_CAPACITY || counters.value_dropped() != KEYS {
if retries <= MAX_RETRIES {
retries += 1;
cache.sync();
continue;
} else {
assert_eq!(counters.invalidated(), MAX_CAPACITY, "Retries exhausted");
assert_eq!(counters.value_dropped(), KEYS, "Retries exhausted");
}
}
assert_eq!(counters.inserted(), KEYS, "inserted");
assert_eq!(counters.value_created(), KEYS, "value_created");
assert_eq!(counters.evicted(), eviction_count, "evicted");
assert_eq!(counters.invalidated(), MAX_CAPACITY, "invalidated");
assert_eq!(counters.value_dropped(), KEYS, "value_dropped");
break;
}
std::mem::drop(cache);
assert_eq!(counters.value_dropped(), KEYS, "value_dropped");
}
#[tokio::test]
async fn test_debug_format() {
let cache = Cache::new(10);
cache.insert('a', "alice").await;
cache.insert('b', "bob").await;
cache.insert('c', "cindy").await;
let debug_str = format!("{:?}", cache);
assert!(debug_str.starts_with('{'));
assert!(debug_str.contains(r#"'a': "alice""#));
assert!(debug_str.contains(r#"'b': "bob""#));
assert!(debug_str.contains(r#"'c': "cindy""#));
assert!(debug_str.ends_with('}'));
}
type NotificationTuple<K, V> = (Arc<K>, V, RemovalCause);
fn verify_notification_vec<K, V, S>(
cache: &Cache<K, V, S>,
actual: Arc<Mutex<Vec<NotificationTuple<K, V>>>>,
expected: &[NotificationTuple<K, V>],
) where
K: std::hash::Hash + Eq + std::fmt::Debug + Send + Sync + 'static,
V: Eq + std::fmt::Debug + Clone + Send + Sync + 'static,
S: std::hash::BuildHasher + Clone + Send + Sync + 'static,
{
// Retries will be needed when testing in a QEMU VM.
const MAX_RETRIES: usize = 5;
let mut retries = 0;
loop {
// Ensure all scheduled notifications have been processed.
std::thread::sleep(Duration::from_millis(500));
let actual = &*actual.lock();
if actual.len() != expected.len() {
if retries <= MAX_RETRIES {
retries += 1;
cache.sync();
continue;
} else {
assert_eq!(actual.len(), expected.len(), "Retries exhausted");
}
}
for (i, (actual, expected)) in actual.iter().zip(expected).enumerate() {
assert_eq!(actual, expected, "expected[{}]", i);
}
break;
}
}
}