探索全文搜索与数据建模
1. 添加迷你控制台
为了能够测试不同的文本文件并搜索各种术语,我们需要添加一个迷你控制台。将 Program.cs 替换为以下代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using Microsoft.WindowsAzure.StorageClient;
using Microsoft.WindowsAzure;
namespace FTS
{
class Program
{
static void Main(string[] args)
{
CreateTables();
Console.WriteLine("Enter command - 'index <directory-path>' or 'search <query>' or 'quit'");
while (true)
{
Console.Write(">");
var command = Console.ReadLine();
if (command.StartsWith("index"))
{
var path
超级会员免费看
订阅专栏 解锁全文
1617

被折叠的 条评论
为什么被折叠?



