次の形式のtxtログファイルを指定します。
USER_A timestamp1 otherstuff
USER_B timestamp2 otherstuff
USER_C timestamp3 otherstuff
USER_A timestamp4 otherstuff
USER_A timestamp5 otherstuff
USER_C timestamp6 otherstuff
USER_B timestamp7 otherstuff
erlangのさまざまなユニークユーザーの数をどのように数えますか?私はファイルを1行ずつ読み取り、proplistsモジュールを使用することを考えていました。各ユーザーがキーになり、値は発生回数になります。ファイルが読み取られたら、次のように呼び出します。
length(proplists:get_keys(List)).
これは私の結果を達成するための正しい方法ですか?